Files
PhotonVision/Site/CSS/Main.css

41 lines
558 B
CSS
Raw Normal View History

2019-03-02 21:17:48 +02:00
body {
2019-03-01 20:17:53 +02:00
background: #212121;
}
2019-03-02 21:17:48 +02:00
.nav {
2019-03-01 20:17:53 +02:00
background: #343334;
2019-03-02 21:17:48 +02:00
box-shadow: 0 3px 5px #343334;
2019-03-01 20:17:53 +02:00
}
2019-03-02 21:17:48 +02:00
.nav > a, .sidenav a {
2019-03-01 20:17:53 +02:00
color: whitesmoke;
font-family:Verdana;
font-weight: 500;
}
2019-03-02 21:17:48 +02:00
.nav > a:hover, .sidenav a:hover {
2019-03-01 20:17:53 +02:00
color: #17a2b8;
}
2019-03-02 21:17:48 +02:00
.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;
}