54 lines
698 B
CSS
54 lines
698 B
CSS
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: sans-serif;
|
|
overflow: clip;
|
|
}
|
|
|
|
.nav-name {
|
|
font-weight: 1000;
|
|
font-size: 1.25em;
|
|
}
|
|
|
|
.sidebar {
|
|
background-color: Purple;
|
|
color: #FFF;
|
|
height: 100%;
|
|
width: 15%;
|
|
float: left;
|
|
border-right: 1px solid #AAAAAA;
|
|
padding: 1%;
|
|
}
|
|
|
|
.sidemenu li {
|
|
list-style-type: "\02386";
|
|
list-style-position: outside;
|
|
padding-left: 0.5em;
|
|
}
|
|
|
|
.sidemenu li a {
|
|
display: block;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
color: #FFF;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.clearfix::after {
|
|
content: "";
|
|
clear: both;
|
|
display: table;
|
|
}
|
|
|
|
.content {
|
|
padding: 20px;
|
|
float: left;
|
|
width: 85%;
|
|
height: 100%;
|
|
color: #000040;
|
|
overflow: auto;
|
|
}
|