26 lines
323 B
CSS
26 lines
323 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;
|
|
}
|
|
nav{
|
|
position: sticky;
|
|
top: 0;
|
|
width: 100%;
|
|
background-color: white;
|
|
}
|