Files
PhotonVision/Site/CSS/Main.css

48 lines
683 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-09 02:35:12 +02:00
padding: 5px;
2019-03-01 20:17:53 +02:00
}
2019-03-02 21:17:48 +02:00
2019-03-10 01:12:53 +02:00
.nav a {
font-size: 1.5em;
margin-left: 5px;
2019-03-09 02:35:12 +02:00
}
2019-03-10 01:12:53 +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
2019-03-10 01:12:53 +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%;
2019-03-06 22:23:02 +02:00
width: 60px;
2019-03-02 21:17:48 +02:00
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
padding-top: 20px;
box-shadow: 3px 0px 5px #111;
}
2019-03-06 22:23:02 +02:00
.sidenav i {
display: inherit;
text-align: center;
color: white;
margin-top: 20px;
}
2019-03-10 01:12:53 +02:00
#main {
2019-03-06 22:23:02 +02:00
margin-left: 60px;
2019-03-02 21:17:48 +02:00
}