39 lines
628 B
CSS
39 lines
628 B
CSS
|
|
:root {
|
|
--bg-color-ll: #535353;
|
|
--bg-color-l: #434343;
|
|
--bg-color: #323232;
|
|
--bg-color-d: #292929;
|
|
--bg-color-dd: #212121;
|
|
}
|
|
|
|
body {
|
|
background: var(--bg-color);
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
}
|
|
|
|
|
|
#topnav {
|
|
width: 100%;
|
|
height: 10%;
|
|
background: var(--bg-color-l);
|
|
display: flex;
|
|
|
|
}
|
|
|
|
.topnav_button {
|
|
width: 12rem;
|
|
padding: 0.6rem 2rem;
|
|
margin: 3px 3px;
|
|
background: var(--bg-color-ll);
|
|
border: 2px solid var(--bg-color);
|
|
border-radius: 10px;
|
|
text-align: center;
|
|
font-size: 25px;
|
|
}
|
|
|
|
|
|
.topnav_button:hover {
|
|
background: var(--bg-color)
|
|
}
|