Files
website/assets/css/bottomnav.css

43 lines
584 B
CSS
Raw Normal View History

2025-12-02 08:01:09 -06:00
#bottomnav {
display: flex;
2025-12-02 11:46:59 -06:00
justify-content: space-between;
2025-12-02 08:01:09 -06:00
padding: 32px;
margin: 0;
2025-12-02 11:46:59 -06:00
outline: 1px solid black;
}
2025-12-02 08:01:09 -06:00
2025-12-02 11:46:59 -06:00
#bottomnav span {
align-self: center;
}
2025-12-02 08:01:09 -06:00
2025-12-02 11:46:59 -06:00
#bottomnav ul {
display: flex;
flex-direction: row;
list-style: none;
padding: 0;
gap: 16px;
2025-12-02 08:01:09 -06:00
}
#bottomnav li {
padding: 0px;
}
#bottomnav a {
color: black;
background: white;
text-decoration: none;
padding: 4px;
outline: 1px black solid;
}
#bottomnav a:hover {
text-decoration: underline;
background: black;
color: white;
}