blob: 862840ca1389abff5b6e83d19a10d99e4e43b202 (
plain)
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
|
#sidebar{
width: 420px;
background: $black;
margin: 70px 0 30px;
word-wrap: break-word;
ul{
list-style: none;
}
.widget{
margin: 20px;
color: #999;
font-size: 13px;
line-height: 1.5;
h3{
color: $main;
font-weight: normal;
font-size: 15px;
margin-bottom: 5px;
a{
color: $main;
&:hover{
color: $main;
}
}
}
a{
color: #ccc;
&:hover{
color: #fff;
text-decoration: underline;
}
}
ul{
list-style: disc;
margin-left: 15px;
li{
ul{
list-style: circle;
}
}
}
&.thin{
width: 180px;
display: inline-block;
vertical-align: top;
&:nth-of-type(2n){
margin-right: 0;
}
}
}
}
|