35 lines
560 B
CSS
Executable File
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;
|
|
}
|