website/_scss/_navigation.scss

22 lines
296 B
SCSS
Raw Normal View History

2022-03-04 20:38:16 +00:00
nav {
2022-06-19 23:34:24 +00:00
margin: 10px;
border-radius: 2px;
padding: 20px;
2022-06-20 00:00:40 +00:00
width: 200px;
2022-06-19 23:34:24 +00:00
background: $background-color;
2022-03-04 20:38:16 +00:00
ul {
list-style: none;
margin: auto;
2022-06-20 00:00:40 +00:00
padding: 10px;
font-size: 1.3em;
2022-03-04 20:38:16 +00:00
2022-06-20 00:00:40 +00:00
font-weight: bold;
text-align: center;
padding: 0;
a {
text-decoration: none;
2022-03-04 20:38:16 +00:00
}
}
}