mirror of
https://github.com/jadonyack/jadonyack.github.io.git
synced 2026-06-15 02:48:13 -04:00
50 lines
717 B
CSS
50 lines
717 B
CSS
html {
|
|
background-color: #303030;
|
|
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.topnav {
|
|
background-color: #222;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
position: sticky;
|
|
top: 0;
|
|
height: 6vh;
|
|
width: 100%;
|
|
line-height: 6vh;
|
|
}
|
|
|
|
.topnav ul {
|
|
list-style-type: none;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.topnav li {
|
|
display: inline;
|
|
}
|
|
|
|
.topnav a {
|
|
display: block;
|
|
float: right;
|
|
color: aliceblue;
|
|
text-align: center;
|
|
padding: 1.75vh 1.5vw;
|
|
text-decoration: none;
|
|
font-size: medium;
|
|
margin: 0;
|
|
height: 6vh;
|
|
}
|
|
|
|
.topnav a:hover {
|
|
background-color: black;
|
|
}
|
|
|
|
.active {
|
|
background-color: royalblue;
|
|
} |