mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-19 00:41:41 +00:00
41 lines
558 B
CSS
41 lines
558 B
CSS
body {
|
|
background: #212121;
|
|
}
|
|
|
|
.nav {
|
|
background: #343334;
|
|
box-shadow: 0 3px 5px #343334;
|
|
}
|
|
|
|
.nav > a, .sidenav a {
|
|
color: whitesmoke;
|
|
font-family:Verdana;
|
|
font-weight: 500;
|
|
|
|
}
|
|
|
|
.nav > a:hover, .sidenav a:hover {
|
|
color: #17a2b8;
|
|
}
|
|
|
|
.sidenav {
|
|
height: 100%;
|
|
width: 80px;
|
|
position: fixed;
|
|
z-index: 1;
|
|
top: 0;
|
|
left: 0;
|
|
background-color: #111;
|
|
overflow-x: hidden;
|
|
padding-top: 20px;
|
|
box-shadow: 3px 0px 5px #111;
|
|
}
|
|
|
|
.main {
|
|
margin-left: 80px;
|
|
}
|
|
|
|
#logo {
|
|
width: 100%;
|
|
height: 80px;
|
|
} |