First commit

This commit is contained in:
2025-09-10 14:42:57 -04:00
commit 1d12903e4e
65 changed files with 3587 additions and 0 deletions

34
Lab 4/navs.css Executable file
View 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;
}