mirror of
https://github.com/TrentSPalmer/fcc-challenges.git
synced 2024-11-16 10:11:30 -08:00
24 lines
304 B
CSS
24 lines
304 B
CSS
|
html,body {
|
||
|
}
|
||
|
|
||
|
h1 {
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
#directory-list {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
font-size: 2rem;
|
||
|
}
|
||
|
|
||
|
#directory-list li {
|
||
|
margin: 1.5rem auto;
|
||
|
font-weight: 700;
|
||
|
text-decoration: none;
|
||
|
text-decoration-color: black;
|
||
|
}
|
||
|
|
||
|
#directory-list a {
|
||
|
color: hsl(100, 19%, 18%);
|
||
|
}
|