First commit
This commit is contained in:
34
Lab 4/navs.css
Executable file
34
Lab 4/navs.css
Executable file
@@ -0,0 +1,34 @@
|
||||
/* 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;
|
||||
}
|
||||
Reference in New Issue
Block a user