54 lines
736 B
CSS
54 lines
736 B
CSS
|
body {
|
||
|
margin: 0;
|
||
|
padding: 0;
|
||
|
font-family: sans-serif;
|
||
|
}
|
||
|
|
||
|
.navbar {
|
||
|
background-color: Purple;
|
||
|
color: #FFFFFF;
|
||
|
padding: 10px;
|
||
|
border-bottom: 1px solid #AAAAAA;
|
||
|
}
|
||
|
|
||
|
.nav-name {
|
||
|
font-weight: 1000;
|
||
|
font-size: 1.25em;
|
||
|
}
|
||
|
|
||
|
.navbar a {
|
||
|
float: right;
|
||
|
text-align: center;
|
||
|
padding-left: 25px;
|
||
|
display: block;
|
||
|
color: #FFFFFF;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
.sidebar {
|
||
|
height: 100%;
|
||
|
width: 200px;
|
||
|
position: fixed;
|
||
|
border-right: 1px solid #AAAAAA;
|
||
|
}
|
||
|
|
||
|
.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: #000040;
|
||
|
margin-bottom: 10px;
|
||
|
}
|
||
|
|
||
|
.content {
|
||
|
padding: 20px;
|
||
|
margin-left: 200px;
|
||
|
color: #000040;
|
||
|
}
|