20 lines
236 B
CSS
20 lines
236 B
CSS
@charset "UTF-8";
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
list-style: none;
|
|
text-decoration: none;
|
|
border: none;
|
|
outline: none;
|
|
}
|
|
|
|
h2{
|
|
text-decoration: underline overline red;
|
|
}
|
|
dl{
|
|
margin-left: 50px;
|
|
}
|
|
p{
|
|
padding: 0.5rem;
|
|
}
|