-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
124 lines (103 loc) · 2.06 KB
/
style.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
118
119
120
121
122
123
124
#readme {
margin-bottom: 10px;
}
.gitstub-warning {
font-weight: bold;
background-color: #fffccc;
}
.gitstub-error {
font-weight: bold;
background-color: #fcdede;
}
.rec-group {
padding: 30px;
position: relative;
margin-bottom: 30px;
border-radius: 3px;
border: 1px solid #ddd;
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
}
.rec-group div {
width: auto;
margin: 0;
}
.rec-group svg {
display: inline-block;
margin-right: 0.3em;
}
.rec-group [itemprop='name'] {
/*float: left;*/
display: inline-block;
min-width: 30%;
}
.rec-group.sep {
text-align: center;
}
.rec-group [itemprop='description'] {
display: inline-block;
/*padding-left: 30px;*/
/*float: left;*/
}
#recbox h2 {
padding-bottom: 0.3em;
margin-bottom: 0.6em;
font-size: 1.5em;
border-bottom: 1px solid #eee;
}
#rec-flavor-thin {
margin: 0px;
padding-bottom: 0.3em;
margin-bottom: 0.6em;
font-size: 1.5em;
border-bottom: 1px solid #eee;
}
.rec-group > div {
min-width: 30%;
margin-bottom: 0.2em;
}
/* Spinner from http://tobiasahlin.com/spinkit/ */
.recspinner {
margin: 100px auto;
width: 50px;
height: 40px;
text-align: center;
font-size: 10px;
}
.recspinner > div {
background-color: #333;
height: 100%;
width: 6px;
display: inline-block;
-webkit-animation: sk-stretchdelay 1.2s infinite ease-in-out;
animation: sk-stretchdelay 1.2s infinite ease-in-out;
}
.recspinner .rect2 {
-webkit-animation-delay: -1.1s;
animation-delay: -1.1s;
}
.recspinner .rect3 {
-webkit-animation-delay: -1.0s;
animation-delay: -1.0s;
}
.recspinner .rect4 {
-webkit-animation-delay: -0.9s;
animation-delay: -0.9s;
}
.recspinner .rect5 {
-webkit-animation-delay: -0.8s;
animation-delay: -0.8s;
}
@-webkit-keyframes sk-stretchdelay {
0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
20% { -webkit-transform: scaleY(1.0) }
}
@keyframes sk-stretchdelay {
0%, 40%, 100% {
transform: scaleY(0.4);
-webkit-transform: scaleY(0.4);
} 20% {
transform: scaleY(1.0);
-webkit-transform: scaleY(1.0);
}
}