2024-10-17 08:48:15 +00:00
|
|
|
$primary_background_color: #EEEEEE;
|
|
|
|
$primary_font_color: #111111;
|
|
|
|
|
|
|
|
$secondary_background_color: #DDDDDD;
|
|
|
|
$secondary_font_color: #333333;
|
|
|
|
|
|
|
|
ul {
|
2025-03-18 14:03:07 +00:00
|
|
|
padding: 0;
|
2024-10-17 08:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
li {
|
2025-03-18 14:03:07 +00:00
|
|
|
list-style: none;
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
justify-content: center;
|
|
|
|
flex-direction: column;
|
2024-10-17 08:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2025-03-18 14:03:07 +00:00
|
|
|
background-color: transparent;
|
|
|
|
padding: 1em;
|
|
|
|
border: 0;
|
|
|
|
margin: 0;
|
|
|
|
font-size: large;
|
|
|
|
text-decoration: none;
|
|
|
|
color: $primary_font_color;
|
|
|
|
border-radius: 10px;
|
2024-10-17 08:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a:hover {
|
2025-03-18 14:03:07 +00:00
|
|
|
background-color: #FAFAFA;
|
2024-10-17 08:48:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
a.active {
|
2025-03-18 14:03:07 +00:00
|
|
|
background-color: #F5F5F5;
|
2024-10-17 08:48:15 +00:00
|
|
|
}
|