28 lines
309 B
SCSS
28 lines
309 B
SCSS
|
@import "config";
|
||
|
|
||
|
aside {
|
||
|
width: 250px;
|
||
|
float: left;
|
||
|
|
||
|
ul {
|
||
|
list-style-type: none;
|
||
|
padding: 0 5px;
|
||
|
//background-color: $main_color4;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
section#feed_content {
|
||
|
float: left;
|
||
|
max-width: 750px;
|
||
|
|
||
|
ul {
|
||
|
list-style-type: none;
|
||
|
padding: 0 10px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.clearing {
|
||
|
clear: both;
|
||
|
}
|
||
|
|