38 lines
474 B
CSS
38 lines
474 B
CSS
section {
|
|
float: left;
|
|
}
|
|
|
|
#menu {
|
|
width: 13em;
|
|
}
|
|
#menu ul {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
li.nav {
|
|
display: block;
|
|
line-height: 2.5em;
|
|
padding: 0 1em;
|
|
cursor: pointer;
|
|
}
|
|
.nav.empact {
|
|
font-weight: 600;
|
|
}
|
|
.nav.header {
|
|
color: #aaa;
|
|
cursor: default;
|
|
}
|
|
|
|
#content {
|
|
width: calc(100% - 13em);
|
|
}
|
|
#content .left, #content .right {
|
|
width: 50%;
|
|
}
|
|
#content .left {
|
|
background: #5500fa;
|
|
}
|
|
#content .right {
|
|
background: #fa0055;
|
|
}
|