Files
CS343-Labs/Lab 4/navs.css
2025-09-10 14:42:57 -04:00

35 lines
560 B
CSS
Executable File

/* navs.css -- Styling the nav elements for Lab 4
* author: Nicholas Tamassia
*/
nav a {
font-family: sans-serif;
text-decoration: none;
font-weight: 900;
color: #450084;
}
nav {
border: solid black 2px;
border-radius: 1vh;
overflow: hidden;
color: #dcdcdc;
background: #dcdcdc;
}
nav > ul {
list-style-type: none;
margin: 0;
padding: 0;
}
nav > ul li {
padding: 8px 13px;
background-color: #dcdcdc;
text-align: center;
}
nav > ul li:not(:last-child) {
border-bottom: solid 2px #f5f5f5;
}