blob: faa17fb0395b8c9d50bc7db72212601af9c5dc23 (
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
52
53
54
55
56
|
#footer{
position: relative;
height: 50px;
margin-bottom: 30px;
&:before{
position: absolute;
top: 0;
left: 0;
content: "©";
background: #000;
color: #fff;
font-size: 50px;
line-height: 1.5;
overflow: hidden;
text-align: right;
@include square(50px);
@include user-select(none);
}
.wrap{
margin-left: 55px;
background: $black;
color: #fff;
line-height: 1;
padding: 29px 10px 10px;
font-size: 11px;
.right{
margin-top: -5px;
a{
position: relative;
text-indent: -9999px;
color: #fff;
display: inline-block;
margin-left: 10px;
@include square(16px);
&:before{
position: absolute;
top: 0;
left: 0;
font: 16px/1 $symbol;
color: #999;
text-indent: 0;
@include user-select(none);
}
&:hover{
&:before{
color: #fff;
}
}
&:first-child:before{content: "f"}
&:nth-child(2):before{content: "g"}
&:nth-child(3):before{content: "t"}
&:last-child:before{content: "B"}
}
}
}
}
|