62 lines
1023 B
CSS
62 lines
1023 B
CSS
|
.sidenav {
|
||
|
height: 100%;
|
||
|
width: 160px;
|
||
|
position: fixed;
|
||
|
z-index: 1;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
background-color: #FA003F;
|
||
|
overflow-x: :hidden;
|
||
|
padding-top: 20px;
|
||
|
}
|
||
|
|
||
|
.sidenav a {
|
||
|
padding: 6px 8px 6px 16px;
|
||
|
text-decoration: none;
|
||
|
font-size: 20px;
|
||
|
color: #FEEFE5;
|
||
|
display: block;
|
||
|
line-height: 1.6;
|
||
|
}
|
||
|
|
||
|
.sidenav a:hover {
|
||
|
color: #00916E;
|
||
|
}
|
||
|
|
||
|
.main {
|
||
|
margin-left: 160px;
|
||
|
padding: 0px 10px;
|
||
|
}
|
||
|
|
||
|
.authBox {
|
||
|
height: 100px;
|
||
|
width: 100px;
|
||
|
background-color: #FEEFE5;
|
||
|
color: #111;
|
||
|
padding: 250px 300px 0px 300px;
|
||
|
position: relative;
|
||
|
}
|
||
|
|
||
|
.authContent {
|
||
|
background-color:#FA003F
|
||
|
padding: 250px 300px 0px 300px;
|
||
|
height: 100%;
|
||
|
width: 100%;
|
||
|
position: absolute;
|
||
|
}
|
||
|
|
||
|
.titleBar {
|
||
|
height: 50px;
|
||
|
width: 100%;
|
||
|
position: fixed;
|
||
|
z-index: 1;
|
||
|
top: 0;
|
||
|
left: 0;
|
||
|
background-color: #2B3D41;
|
||
|
padding-top: 20px;
|
||
|
text-align: center;
|
||
|
text-decoration: none;
|
||
|
font-size: 30px;
|
||
|
color: #FEEFE5;
|
||
|
display: block;
|
||
|
}
|