forked from monsti/monsti
-
Notifications
You must be signed in to change notification settings - Fork 1
/
monsti.scss
65 lines (57 loc) · 972 Bytes
/
monsti.scss
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
@import "base";
#primary-nav {
ul {
list-style:none;
background: #EEE;
border: thin solid $border-color;
overflow:hidden;
margin-bottom: 20px;
padding-left: 35px;
}
li {
@include inline-block;
padding:0;
margin:0;
&.active-below.child, &.active{
background:#ddd;
}
&:first-child a {
border-left:thin solid gray;
}
}
a {
color: #333;
padding:0.5em 1em;
display:block;
border-right:thin solid gray;
text-decoration:none;
&:hover {
background: $secondary-color;
color: white;
}
}
}
#content-wrap {
display: table;
width: 100%;
}
#sidebar, #main {
vertical-align: top;
padding-bottom: 75px;
}
#sidebar {
border-left: none;
box-sizing: border-box;
width: 33.33%;
display: table-cell;
background: #EEE;
padding-top: 50px;
}
#main {
display: table-cell;
width: 66.66%;
padding-right: 50px;
box-sizing: border-box;
}
#content {
}