-
Notifications
You must be signed in to change notification settings - Fork 0
/
look-at-this.css
117 lines (108 loc) · 2.14 KB
/
look-at-this.css
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
.social-icon-delicious{
background-position:0 0;
background-color:#3274D1;
}
.social-icon-digg{
background-position:0 6.65%;
background-color:#14589E;
}
.social-icon-email{
background-position:0 13.3%;
background-color:#ccc;
}
.social-icon-facebook{
background-position:0 19.950000000000003%;
background-color:#3B5998;
}
.social-icon-flattr{
background-position:0 26.6%;
background-color:#F67C1A;
}
.social-icon-github{
background-position:0 33.25%;
}
.social-icon-googleplus{
background-position:0 39.9%;
background-color:#D14836;
}
.social-icon-hackernews{
background-position:0 46.55%;
background-color:#FF6600;
}
.social-icon-echojs{
background-position:0 53.199999999999996%;
background-color:#AA0000;
}
.social-icon-linkedin{
background-position:0 59.849999999999994%;
background-color:#007FB1;
}
.social-icon-pinterest{
background-position:0 66.5%;
background-color:#CB2027;
}
.social-icon-reddit{
background-position:0 73.15%;
background-color:#FF4500;
}
.social-icon-stumbleupon{
background-position:0 79.80000000000001%;
background-color:#EB4924;
}
.social-icon-tumblr{
background-position:0 86.45000000000002%;
background-color:#2C4762;
}
.social-icon-twitter{
background-position:0 93.10000000000002%;
background-color:#00ACED;
}
.social-icon-xing{
background-position:0 99.75000000000003%;
background-color:#006567;
}
.social-icon{
background-image: url("sprite__social-icon.png");
background-repeat: no-repeat;
display: inline-block;
background-size: cover;
width:100%;
height:100%;
transition:all 0.1s ease-in-out;
}
.social-share-button{
display: inline-block;
width: 200px;
height: 200px;
transition: width 0.4s ease-in, height 0.4s ease-in;
margin-right: 11px;
margin-bottom: 11px;
}
/*//xs only*/
@media(max-width: 767px) {
.social-share-button{
width: 32px;
height: 32px;
}
}
/*//small and up*/
@media(min-width: 768px) {
.social-share-button{
width: 64px;
height: 64px;
}
}
/*//md only*/
@media(min-width: 992px) and (max-width: 1199px) {
.social-share-button{
width: 96px;
height: 96px;
}
}
/*//lg and up*/
@media(min-width: 1200px) {
.social-share-button{
width: 128px;
height: 128px;
}
}