This repository has been archived by the owner on Mar 2, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibrary.css
217 lines (207 loc) · 3.87 KB
/
library.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/*
* A collection of mixins using the 'animation' properties
*/
/*
* animation-duration mixin including vendor prefixed properties
*
* Example usage:
*
* .animation-duration(1s);
*/
/*
* animation-iteration-count mixin including vendor prefixed properties
*
* Example usage:
*
* .animation-iteration-count(infinite);
*/
/*
* animation-name mixin including vendor prefixed properties
*
* Example usage:
*
* .animation-name(spin);
*/
/*
* animation-timing-function mixin including vendor prefixed properties
*
* Example usage:
*
* .animation-timing-function(linear);
*/
/*
* A collection of mixins using the 'border' properties
*/
/**
* border-radius mixin including vendor prefixed properties
*
* Example usage:
*
* .border-radius(10px);
*/
/**
* A mixin which helps you to add depth to elements according to the Google Material Design spec:
* http://www.google.com/design/spec/layout/layout-principles.html#layout-principles-dimensionality
*
* Please note that the values given in the specification cannot be used as is. To create the same visual experience
* the blur parameter has to be doubled.
*
* Author: Florian Kutschera (@gefangenimnetz), Conceptboard GmbH (@conceptboardapp)
*
* Example usage:
*
* .card {
* width: 95px;
* height: 95px;
* background: #f4f4f4;
* -webkit-transition: all 250ms;
* -moz-transition: all 250ms;
* transition: all 250ms;
* .BoxShadowHelper(1);
* &:hover {
* .box-shadow-helper(3);
* -webkit-transform: translateY(-5px);
* -moz-transform: translateY(-5px);
* transform: translateY(-5px);
* }
* }
*
*/
/*
* A collection of mixins using the 'box-sizing' properties
*/
/**
* box-sizing mixin including vendor prefixed properties
*
* Example usage:
*
* .box-sizing(border-box);
*/
/**
* Clear fix mixin for use with floats
*
* Example usage:
*
* .clearfix;
*/
/*
* A collection of headings mixins
*/
/**
* Generic heading mixin
*
* Example usage:
*
* .heading(30px, #fff, #000, left, 20px 0);
*/
/**
* h1 mixin
*
* Example usage:
*
* .h1(30px, #fff, #000, left, 20px 0);
*/
/**
* h2 mixin
*
* Example usage:
*
* .h2(30px, #fff, #000, left, 20px 0);
*/
/**
* h3 mixin
*
* Example usage:
*
* .h3(30px, #fff, #000, left, 20px 0);
*/
/**
* h4 mixin
*
* Example usage:
*
* .h4(30px, #fff, #000, left, 20px 0);
*/
/**
* Keyframe mixin based on 'transform' proptery with only 'from' and 'to' set
*
* Example usage:
*
* .keyframes-from-to-transform(spin, rotate(0deg), rotate(360deg));
*/
/**
* Keyframe mixin based on 'transform' proptery with '0%', '50%', and '100%' set
*
* Example usage:
*
* .keyframes-0-50-100-transform(spin, scale(1), scale(1.4), scale(1));
*/
/**
* Apply styles to an element above a certain screen size
*
* Example usage:
*
* .aboveBreakpoint(900px, {
* background-color: #ff0000;
* });
*/
/**
* Apply styles to an element below a certain screen size
*
* Example usage:
*
* .aboveBreakpoint(900px, {
* background-color: #00ff00;
* });
*/
/*
* A collection of text area mixins
*/
/**
* padded text area mixin
*
* Example usage:
*
* .translateY(50%);
*/
/*
* A collection of mixins using the 'transform' properties
*/
/**
* transform: rotate() mixin including vendor prefixed properties
*
* Example usage:
*
* .rotate(90deg);
*/
/**
* transform: translateY() mixin including vendor prefixed properties
*
* Example usage:
*
* .translateY(50%);
*/
/*
* A collection of mixins using the 'transition' properties
*/
/**
* transition mixin including vendor prefixed properties
*
* Example usage:
*
* .transition(top, 1s, ease);
*/
/**
* transition-delay mixin including vendor prefixed properties
*
* Example usage:
*
* .transition-delay(1s);
*/
/**
* transition-duration mixin including vendor prefixed properties
*
* Example usage:
*
* .transition-duration(.4s);
*/