fomantic-ui-sass 2.6.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +27 -0
- data/.rspec +1 -0
- data/.travis.yml +5 -0
- data/CHANGELOG.md +370 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +177 -0
- data/Rakefile +8 -0
- data/app/assets/fonts/semantic-ui/brand-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.svg +1008 -0
- data/app/assets/fonts/semantic-ui/brand-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/brand-icons.woff2 +0 -0
- data/app/assets/fonts/semantic-ui/icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/icons.otf +0 -0
- data/app/assets/fonts/semantic-ui/icons.svg +1518 -0
- data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/icons.woff2 +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.eot +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.svg +366 -0
- data/app/assets/fonts/semantic-ui/outline-icons.ttf +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff +0 -0
- data/app/assets/fonts/semantic-ui/outline-icons.woff2 +0 -0
- data/app/assets/images/semantic-ui/flags.png +0 -0
- data/app/assets/javascripts/semantic-ui.js +27 -0
- data/app/assets/javascripts/semantic-ui/accordion.js +613 -0
- data/app/assets/javascripts/semantic-ui/api.js +1167 -0
- data/app/assets/javascripts/semantic-ui/calendar.js +1476 -0
- data/app/assets/javascripts/semantic-ui/checkbox.js +828 -0
- data/app/assets/javascripts/semantic-ui/colorize.js +280 -0
- data/app/assets/javascripts/semantic-ui/dimmer.js +735 -0
- data/app/assets/javascripts/semantic-ui/dropdown.js +4030 -0
- data/app/assets/javascripts/semantic-ui/embed.js +706 -0
- data/app/assets/javascripts/semantic-ui/form.js +1707 -0
- data/app/assets/javascripts/semantic-ui/modal.js +1090 -0
- data/app/assets/javascripts/semantic-ui/nag.js +507 -0
- data/app/assets/javascripts/semantic-ui/popup.js +1532 -0
- data/app/assets/javascripts/semantic-ui/progress.js +923 -0
- data/app/assets/javascripts/semantic-ui/range.js +278 -0
- data/app/assets/javascripts/semantic-ui/rating.js +511 -0
- data/app/assets/javascripts/semantic-ui/search.js +1515 -0
- data/app/assets/javascripts/semantic-ui/shape.js +921 -0
- data/app/assets/javascripts/semantic-ui/sidebar.js +1033 -0
- data/app/assets/javascripts/semantic-ui/site.js +490 -0
- data/app/assets/javascripts/semantic-ui/state.js +708 -0
- data/app/assets/javascripts/semantic-ui/sticky.js +959 -0
- data/app/assets/javascripts/semantic-ui/tab.js +952 -0
- data/app/assets/javascripts/semantic-ui/toast.js +592 -0
- data/app/assets/javascripts/semantic-ui/transition.js +1106 -0
- data/app/assets/javascripts/semantic-ui/video.js +532 -0
- data/app/assets/javascripts/semantic-ui/visibility.js +1311 -0
- data/app/assets/javascripts/semantic-ui/visit.js +525 -0
- data/app/assets/stylesheets/semantic-ui.scss +5 -0
- data/app/assets/stylesheets/semantic-ui/collections/_all.scss +6 -0
- data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +124 -0
- data/app/assets/stylesheets/semantic-ui/collections/_form.scss +1158 -0
- data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +2093 -0
- data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +2193 -0
- data/app/assets/stylesheets/semantic-ui/collections/_message.scss +606 -0
- data/app/assets/stylesheets/semantic-ui/collections/_table.scss +1117 -0
- data/app/assets/stylesheets/semantic-ui/elements/_all.scss +16 -0
- data/app/assets/stylesheets/semantic-ui/elements/_button.scss +4530 -0
- data/app/assets/stylesheets/semantic-ui/elements/_container.scss +145 -0
- data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +259 -0
- data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1036 -0
- data/app/assets/stylesheets/semantic-ui/elements/_header.scss +762 -0
- data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +6330 -0
- data/app/assets/stylesheets/semantic-ui/elements/_image.scss +310 -0
- data/app/assets/stylesheets/semantic-ui/elements/_input.scss +519 -0
- data/app/assets/stylesheets/semantic-ui/elements/_label.scss +1395 -0
- data/app/assets/stylesheets/semantic-ui/elements/_list.scss +959 -0
- data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +458 -0
- data/app/assets/stylesheets/semantic-ui/elements/_placeholder.scss +242 -0
- data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +152 -0
- data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +295 -0
- data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +884 -0
- data/app/assets/stylesheets/semantic-ui/elements/_step.scss +675 -0
- data/app/assets/stylesheets/semantic-ui/globals/_all.scss +3 -0
- data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +485 -0
- data/app/assets/stylesheets/semantic-ui/globals/_site.scss +206 -0
- data/app/assets/stylesheets/semantic-ui/globals/_variables.scss +4 -0
- data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +247 -0
- data/app/assets/stylesheets/semantic-ui/modules/_all.scss +20 -0
- data/app/assets/stylesheets/semantic-ui/modules/_calendar.scss +165 -0
- data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +718 -0
- data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +464 -0
- data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +1745 -0
- data/app/assets/stylesheets/semantic-ui/modules/_embed.scss +165 -0
- data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +646 -0
- data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +148 -0
- data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +789 -0
- data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +523 -0
- data/app/assets/stylesheets/semantic-ui/modules/_range.scss +192 -0
- data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +263 -0
- data/app/assets/stylesheets/semantic-ui/modules/_search.scss +445 -0
- data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +154 -0
- data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +626 -0
- data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +78 -0
- data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +92 -0
- data/app/assets/stylesheets/semantic-ui/modules/_toast.scss +291 -0
- data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +2059 -0
- data/app/assets/stylesheets/semantic-ui/modules/_video.scss +125 -0
- data/app/assets/stylesheets/semantic-ui/views/_ad.scss +275 -0
- data/app/assets/stylesheets/semantic-ui/views/_all.scss +6 -0
- data/app/assets/stylesheets/semantic-ui/views/_card.scss +1124 -0
- data/app/assets/stylesheets/semantic-ui/views/_comment.scss +296 -0
- data/app/assets/stylesheets/semantic-ui/views/_feed.scss +314 -0
- data/app/assets/stylesheets/semantic-ui/views/_item.scss +555 -0
- data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +583 -0
- data/app/helpers/semantic_breadcrumbs_helper.rb +10 -0
- data/app/helpers/semantic_flash_helper.rb +22 -0
- data/app/helpers/semantic_icon_helper.rb +8 -0
- data/app/views/semantic/_breadcrumbs.html.erb +12 -0
- data/fomantic-ui-sass.gemspec +31 -0
- data/lib/fomantic-ui-sass.rb +62 -0
- data/lib/fomantic/ui/sass/breadcrumbs.rb +41 -0
- data/lib/fomantic/ui/sass/engine.rb +23 -0
- data/lib/fomantic/ui/sass/version.rb +8 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/images/.keep +0 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +13 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/controllers/concerns/.keep +0 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/mailers/.keep +0 -0
- data/spec/dummy/app/models/.keep +0 -0
- data/spec/dummy/app/models/concerns/.keep +0 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +28 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +29 -0
- data/spec/dummy/config/environments/production.rb +80 -0
- data/spec/dummy/config/environments/test.rb +36 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +12 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +2 -0
- data/spec/dummy/lib/assets/.keep +0 -0
- data/spec/dummy/log/.keep +0 -0
- data/spec/dummy/public/404.html +58 -0
- data/spec/dummy/public/422.html +58 -0
- data/spec/dummy/public/500.html +57 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/helpers/semantic_breadcrumbs_helper_spec.rb +38 -0
- data/spec/helpers/semantic_flash_helper_spec.rb +36 -0
- data/spec/helpers/semantic_icon_helper_spec.rb +48 -0
- data/spec/spec_helper.rb +17 -0
- data/tasks/converter.rb +216 -0
- data/templates/project/manifest.rb +29 -0
- data/templates/project/styles.scss +1 -0
- metadata +390 -0
@@ -0,0 +1,583 @@
|
|
1
|
+
/*!
|
2
|
+
* # Semantic UI 2.6.4 - Statistic
|
3
|
+
* http://github.com/semantic-org/semantic-ui/
|
4
|
+
*
|
5
|
+
*
|
6
|
+
* Released under the MIT license
|
7
|
+
* http://opensource.org/licenses/MIT
|
8
|
+
*
|
9
|
+
*/
|
10
|
+
|
11
|
+
|
12
|
+
/*******************************
|
13
|
+
Statistic
|
14
|
+
*******************************/
|
15
|
+
|
16
|
+
|
17
|
+
/* Standalone */
|
18
|
+
.ui.statistic {
|
19
|
+
display: -webkit-inline-box;
|
20
|
+
display: -ms-inline-flexbox;
|
21
|
+
display: inline-flex;
|
22
|
+
-webkit-box-orient: vertical;
|
23
|
+
-webkit-box-direction: normal;
|
24
|
+
-ms-flex-direction: column;
|
25
|
+
flex-direction: column;
|
26
|
+
margin: 1em 0em;
|
27
|
+
max-width: auto;
|
28
|
+
}
|
29
|
+
.ui.statistic + .ui.statistic {
|
30
|
+
margin: 0em 0em 0em 1.5em;
|
31
|
+
}
|
32
|
+
.ui.statistic:first-child {
|
33
|
+
margin-top: 0em;
|
34
|
+
}
|
35
|
+
.ui.statistic:last-child {
|
36
|
+
margin-bottom: 0em;
|
37
|
+
}
|
38
|
+
|
39
|
+
|
40
|
+
/*******************************
|
41
|
+
Group
|
42
|
+
*******************************/
|
43
|
+
|
44
|
+
|
45
|
+
/* Grouped */
|
46
|
+
.ui.statistics {
|
47
|
+
display: -webkit-box;
|
48
|
+
display: -ms-flexbox;
|
49
|
+
display: flex;
|
50
|
+
-webkit-box-align: start;
|
51
|
+
-ms-flex-align: start;
|
52
|
+
align-items: flex-start;
|
53
|
+
-ms-flex-wrap: wrap;
|
54
|
+
flex-wrap: wrap;
|
55
|
+
}
|
56
|
+
.ui.statistics > .statistic {
|
57
|
+
display: -webkit-inline-box;
|
58
|
+
display: -ms-inline-flexbox;
|
59
|
+
display: inline-flex;
|
60
|
+
-webkit-box-flex: 0;
|
61
|
+
-ms-flex: 0 1 auto;
|
62
|
+
flex: 0 1 auto;
|
63
|
+
-webkit-box-orient: vertical;
|
64
|
+
-webkit-box-direction: normal;
|
65
|
+
-ms-flex-direction: column;
|
66
|
+
flex-direction: column;
|
67
|
+
margin: 0em 1.5em 1em;
|
68
|
+
max-width: auto;
|
69
|
+
}
|
70
|
+
.ui.statistics {
|
71
|
+
display: -webkit-box;
|
72
|
+
display: -ms-flexbox;
|
73
|
+
display: flex;
|
74
|
+
margin: 1em -1.5em -1em;
|
75
|
+
}
|
76
|
+
|
77
|
+
/* Clearing */
|
78
|
+
.ui.statistics:after {
|
79
|
+
display: block;
|
80
|
+
content: ' ';
|
81
|
+
height: 0px;
|
82
|
+
clear: both;
|
83
|
+
overflow: hidden;
|
84
|
+
visibility: hidden;
|
85
|
+
}
|
86
|
+
.ui.statistics:first-child {
|
87
|
+
margin-top: 0em;
|
88
|
+
}
|
89
|
+
|
90
|
+
|
91
|
+
/*******************************
|
92
|
+
Content
|
93
|
+
*******************************/
|
94
|
+
|
95
|
+
|
96
|
+
/*--------------
|
97
|
+
Value
|
98
|
+
---------------*/
|
99
|
+
|
100
|
+
.ui.statistics .statistic > .value,
|
101
|
+
.ui.statistic > .value {
|
102
|
+
font-family: $font-family;
|
103
|
+
font-size: 4rem;
|
104
|
+
font-weight: normal;
|
105
|
+
line-height: 1em;
|
106
|
+
color: #1B1C1D;
|
107
|
+
text-transform: uppercase;
|
108
|
+
text-align: center;
|
109
|
+
}
|
110
|
+
|
111
|
+
/*--------------
|
112
|
+
Label
|
113
|
+
---------------*/
|
114
|
+
|
115
|
+
.ui.statistics .statistic > .label,
|
116
|
+
.ui.statistic > .label {
|
117
|
+
font-family: $font-family;
|
118
|
+
font-size: 1em;
|
119
|
+
font-weight: bold;
|
120
|
+
color: rgba(0, 0, 0, 0.87);
|
121
|
+
text-transform: uppercase;
|
122
|
+
text-align: center;
|
123
|
+
}
|
124
|
+
|
125
|
+
/* Top Label */
|
126
|
+
.ui.statistics .statistic > .label ~ .value,
|
127
|
+
.ui.statistic > .label ~ .value {
|
128
|
+
margin-top: 0rem;
|
129
|
+
}
|
130
|
+
|
131
|
+
/* Bottom Label */
|
132
|
+
.ui.statistics .statistic > .value ~ .label,
|
133
|
+
.ui.statistic > .value ~ .label {
|
134
|
+
margin-top: 0rem;
|
135
|
+
}
|
136
|
+
|
137
|
+
|
138
|
+
/*******************************
|
139
|
+
Types
|
140
|
+
*******************************/
|
141
|
+
|
142
|
+
|
143
|
+
/*--------------
|
144
|
+
Icon Value
|
145
|
+
---------------*/
|
146
|
+
|
147
|
+
.ui.statistics .statistic > .value .icon,
|
148
|
+
.ui.statistic > .value .icon {
|
149
|
+
opacity: 1;
|
150
|
+
width: auto;
|
151
|
+
margin: 0em;
|
152
|
+
}
|
153
|
+
|
154
|
+
/*--------------
|
155
|
+
Text Value
|
156
|
+
---------------*/
|
157
|
+
|
158
|
+
.ui.statistics .statistic > .text.value,
|
159
|
+
.ui.statistic > .text.value {
|
160
|
+
line-height: 1em;
|
161
|
+
min-height: 2em;
|
162
|
+
font-weight: bold;
|
163
|
+
text-align: center;
|
164
|
+
}
|
165
|
+
.ui.statistics .statistic > .text.value + .label,
|
166
|
+
.ui.statistic > .text.value + .label {
|
167
|
+
text-align: center;
|
168
|
+
}
|
169
|
+
|
170
|
+
/*--------------
|
171
|
+
Image Value
|
172
|
+
---------------*/
|
173
|
+
|
174
|
+
.ui.statistics .statistic > .value img,
|
175
|
+
.ui.statistic > .value img {
|
176
|
+
max-height: 3rem;
|
177
|
+
vertical-align: baseline;
|
178
|
+
}
|
179
|
+
|
180
|
+
|
181
|
+
/*******************************
|
182
|
+
Variations
|
183
|
+
*******************************/
|
184
|
+
|
185
|
+
|
186
|
+
/*--------------
|
187
|
+
Count
|
188
|
+
---------------*/
|
189
|
+
|
190
|
+
.ui.ten.statistics {
|
191
|
+
margin: 0em 0em -1em;
|
192
|
+
}
|
193
|
+
.ui.ten.statistics .statistic {
|
194
|
+
min-width: 10%;
|
195
|
+
margin: 0em 0em 1em;
|
196
|
+
}
|
197
|
+
.ui.nine.statistics {
|
198
|
+
margin: 0em 0em -1em;
|
199
|
+
}
|
200
|
+
.ui.nine.statistics .statistic {
|
201
|
+
min-width: 11.11111111%;
|
202
|
+
margin: 0em 0em 1em;
|
203
|
+
}
|
204
|
+
.ui.eight.statistics {
|
205
|
+
margin: 0em 0em -1em;
|
206
|
+
}
|
207
|
+
.ui.eight.statistics .statistic {
|
208
|
+
min-width: 12.5%;
|
209
|
+
margin: 0em 0em 1em;
|
210
|
+
}
|
211
|
+
.ui.seven.statistics {
|
212
|
+
margin: 0em 0em -1em;
|
213
|
+
}
|
214
|
+
.ui.seven.statistics .statistic {
|
215
|
+
min-width: 14.28571429%;
|
216
|
+
margin: 0em 0em 1em;
|
217
|
+
}
|
218
|
+
.ui.six.statistics {
|
219
|
+
margin: 0em 0em -1em;
|
220
|
+
}
|
221
|
+
.ui.six.statistics .statistic {
|
222
|
+
min-width: 16.66666667%;
|
223
|
+
margin: 0em 0em 1em;
|
224
|
+
}
|
225
|
+
.ui.five.statistics {
|
226
|
+
margin: 0em 0em -1em;
|
227
|
+
}
|
228
|
+
.ui.five.statistics .statistic {
|
229
|
+
min-width: 20%;
|
230
|
+
margin: 0em 0em 1em;
|
231
|
+
}
|
232
|
+
.ui.four.statistics {
|
233
|
+
margin: 0em 0em -1em;
|
234
|
+
}
|
235
|
+
.ui.four.statistics .statistic {
|
236
|
+
min-width: 25%;
|
237
|
+
margin: 0em 0em 1em;
|
238
|
+
}
|
239
|
+
.ui.three.statistics {
|
240
|
+
margin: 0em 0em -1em;
|
241
|
+
}
|
242
|
+
.ui.three.statistics .statistic {
|
243
|
+
min-width: 33.33333333%;
|
244
|
+
margin: 0em 0em 1em;
|
245
|
+
}
|
246
|
+
.ui.two.statistics {
|
247
|
+
margin: 0em 0em -1em;
|
248
|
+
}
|
249
|
+
.ui.two.statistics .statistic {
|
250
|
+
min-width: 50%;
|
251
|
+
margin: 0em 0em 1em;
|
252
|
+
}
|
253
|
+
.ui.one.statistics {
|
254
|
+
margin: 0em 0em -1em;
|
255
|
+
}
|
256
|
+
.ui.one.statistics .statistic {
|
257
|
+
min-width: 100%;
|
258
|
+
margin: 0em 0em 1em;
|
259
|
+
}
|
260
|
+
|
261
|
+
/*--------------
|
262
|
+
Horizontal
|
263
|
+
---------------*/
|
264
|
+
|
265
|
+
.ui.horizontal.statistic {
|
266
|
+
-webkit-box-orient: horizontal;
|
267
|
+
-webkit-box-direction: normal;
|
268
|
+
-ms-flex-direction: row;
|
269
|
+
flex-direction: row;
|
270
|
+
-webkit-box-align: center;
|
271
|
+
-ms-flex-align: center;
|
272
|
+
align-items: center;
|
273
|
+
}
|
274
|
+
.ui.horizontal.statistics {
|
275
|
+
-webkit-box-orient: vertical;
|
276
|
+
-webkit-box-direction: normal;
|
277
|
+
-ms-flex-direction: column;
|
278
|
+
flex-direction: column;
|
279
|
+
margin: 0em;
|
280
|
+
max-width: none;
|
281
|
+
}
|
282
|
+
.ui.horizontal.statistics .statistic {
|
283
|
+
-webkit-box-orient: horizontal;
|
284
|
+
-webkit-box-direction: normal;
|
285
|
+
-ms-flex-direction: row;
|
286
|
+
flex-direction: row;
|
287
|
+
-webkit-box-align: center;
|
288
|
+
-ms-flex-align: center;
|
289
|
+
align-items: center;
|
290
|
+
max-width: none;
|
291
|
+
margin: 1em 0em;
|
292
|
+
}
|
293
|
+
.ui.horizontal.statistic > .text.value,
|
294
|
+
.ui.horizontal.statistics > .statistic > .text.value {
|
295
|
+
min-height: 0em !important;
|
296
|
+
}
|
297
|
+
.ui.horizontal.statistics .statistic > .value .icon,
|
298
|
+
.ui.horizontal.statistic > .value .icon {
|
299
|
+
width: 1.18em;
|
300
|
+
}
|
301
|
+
.ui.horizontal.statistics .statistic > .value,
|
302
|
+
.ui.horizontal.statistic > .value {
|
303
|
+
display: inline-block;
|
304
|
+
vertical-align: middle;
|
305
|
+
}
|
306
|
+
.ui.horizontal.statistics .statistic > .label,
|
307
|
+
.ui.horizontal.statistic > .label {
|
308
|
+
display: inline-block;
|
309
|
+
vertical-align: middle;
|
310
|
+
margin: 0em 0em 0em 0.75em;
|
311
|
+
}
|
312
|
+
|
313
|
+
/*--------------
|
314
|
+
Colors
|
315
|
+
---------------*/
|
316
|
+
|
317
|
+
.ui.red.statistics .statistic > .value,
|
318
|
+
.ui.statistics .red.statistic > .value,
|
319
|
+
.ui.red.statistic > .value {
|
320
|
+
color: #DB2828;
|
321
|
+
}
|
322
|
+
.ui.orange.statistics .statistic > .value,
|
323
|
+
.ui.statistics .orange.statistic > .value,
|
324
|
+
.ui.orange.statistic > .value {
|
325
|
+
color: #F2711C;
|
326
|
+
}
|
327
|
+
.ui.yellow.statistics .statistic > .value,
|
328
|
+
.ui.statistics .yellow.statistic > .value,
|
329
|
+
.ui.yellow.statistic > .value {
|
330
|
+
color: #FBBD08;
|
331
|
+
}
|
332
|
+
.ui.olive.statistics .statistic > .value,
|
333
|
+
.ui.statistics .olive.statistic > .value,
|
334
|
+
.ui.olive.statistic > .value {
|
335
|
+
color: #B5CC18;
|
336
|
+
}
|
337
|
+
.ui.green.statistics .statistic > .value,
|
338
|
+
.ui.statistics .green.statistic > .value,
|
339
|
+
.ui.green.statistic > .value {
|
340
|
+
color: #21BA45;
|
341
|
+
}
|
342
|
+
.ui.teal.statistics .statistic > .value,
|
343
|
+
.ui.statistics .teal.statistic > .value,
|
344
|
+
.ui.teal.statistic > .value {
|
345
|
+
color: #00B5AD;
|
346
|
+
}
|
347
|
+
.ui.blue.statistics .statistic > .value,
|
348
|
+
.ui.statistics .blue.statistic > .value,
|
349
|
+
.ui.blue.statistic > .value {
|
350
|
+
color: #2185D0;
|
351
|
+
}
|
352
|
+
.ui.violet.statistics .statistic > .value,
|
353
|
+
.ui.statistics .violet.statistic > .value,
|
354
|
+
.ui.violet.statistic > .value {
|
355
|
+
color: #6435C9;
|
356
|
+
}
|
357
|
+
.ui.purple.statistics .statistic > .value,
|
358
|
+
.ui.statistics .purple.statistic > .value,
|
359
|
+
.ui.purple.statistic > .value {
|
360
|
+
color: #A333C8;
|
361
|
+
}
|
362
|
+
.ui.pink.statistics .statistic > .value,
|
363
|
+
.ui.statistics .pink.statistic > .value,
|
364
|
+
.ui.pink.statistic > .value {
|
365
|
+
color: #E03997;
|
366
|
+
}
|
367
|
+
.ui.brown.statistics .statistic > .value,
|
368
|
+
.ui.statistics .brown.statistic > .value,
|
369
|
+
.ui.brown.statistic > .value {
|
370
|
+
color: #A5673F;
|
371
|
+
}
|
372
|
+
.ui.grey.statistics .statistic > .value,
|
373
|
+
.ui.statistics .grey.statistic > .value,
|
374
|
+
.ui.grey.statistic > .value {
|
375
|
+
color: #767676;
|
376
|
+
}
|
377
|
+
|
378
|
+
/*--------------
|
379
|
+
Inverted
|
380
|
+
---------------*/
|
381
|
+
|
382
|
+
.ui.inverted.statistics .statistic > .value,
|
383
|
+
.ui.inverted.statistic .value {
|
384
|
+
color: #FFFFFF;
|
385
|
+
}
|
386
|
+
.ui.inverted.statistics .statistic > .label,
|
387
|
+
.ui.inverted.statistic .label {
|
388
|
+
color: rgba(255, 255, 255, 0.9);
|
389
|
+
}
|
390
|
+
.ui.inverted.red.statistics .statistic > .value,
|
391
|
+
.ui.statistics .inverted.red.statistic > .value,
|
392
|
+
.ui.inverted.red.statistic > .value {
|
393
|
+
color: #FF695E;
|
394
|
+
}
|
395
|
+
.ui.inverted.orange.statistics .statistic > .value,
|
396
|
+
.ui.statistics .inverted.orange.statistic > .value,
|
397
|
+
.ui.inverted.orange.statistic > .value {
|
398
|
+
color: #FF851B;
|
399
|
+
}
|
400
|
+
.ui.inverted.yellow.statistics .statistic > .value,
|
401
|
+
.ui.statistics .inverted.yellow.statistic > .value,
|
402
|
+
.ui.inverted.yellow.statistic > .value {
|
403
|
+
color: #FFE21F;
|
404
|
+
}
|
405
|
+
.ui.inverted.olive.statistics .statistic > .value,
|
406
|
+
.ui.statistics .inverted.olive.statistic > .value,
|
407
|
+
.ui.inverted.olive.statistic > .value {
|
408
|
+
color: #D9E778;
|
409
|
+
}
|
410
|
+
.ui.inverted.green.statistics .statistic > .value,
|
411
|
+
.ui.statistics .inverted.green.statistic > .value,
|
412
|
+
.ui.inverted.green.statistic > .value {
|
413
|
+
color: #2ECC40;
|
414
|
+
}
|
415
|
+
.ui.inverted.teal.statistics .statistic > .value,
|
416
|
+
.ui.statistics .inverted.teal.statistic > .value,
|
417
|
+
.ui.inverted.teal.statistic > .value {
|
418
|
+
color: #6DFFFF;
|
419
|
+
}
|
420
|
+
.ui.inverted.blue.statistics .statistic > .value,
|
421
|
+
.ui.statistics .inverted.blue.statistic > .value,
|
422
|
+
.ui.inverted.blue.statistic > .value {
|
423
|
+
color: #54C8FF;
|
424
|
+
}
|
425
|
+
.ui.inverted.violet.statistics .statistic > .value,
|
426
|
+
.ui.statistics .inverted.violet.statistic > .value,
|
427
|
+
.ui.inverted.violet.statistic > .value {
|
428
|
+
color: #A291FB;
|
429
|
+
}
|
430
|
+
.ui.inverted.purple.statistics .statistic > .value,
|
431
|
+
.ui.statistics .inverted.purple.statistic > .value,
|
432
|
+
.ui.inverted.purple.statistic > .value {
|
433
|
+
color: #DC73FF;
|
434
|
+
}
|
435
|
+
.ui.inverted.pink.statistics .statistic > .value,
|
436
|
+
.ui.statistics .inverted.pink.statistic > .value,
|
437
|
+
.ui.inverted.pink.statistic > .value {
|
438
|
+
color: #FF8EDF;
|
439
|
+
}
|
440
|
+
.ui.inverted.brown.statistics .statistic > .value,
|
441
|
+
.ui.statistics .inverted.brown.statistic > .value,
|
442
|
+
.ui.inverted.brown.statistic > .value {
|
443
|
+
color: #D67C1C;
|
444
|
+
}
|
445
|
+
.ui.inverted.grey.statistics .statistic > .value,
|
446
|
+
.ui.statistics .inverted.grey.statistic > .value,
|
447
|
+
.ui.inverted.grey.statistic > .value {
|
448
|
+
color: #DCDDDE;
|
449
|
+
}
|
450
|
+
|
451
|
+
/*--------------
|
452
|
+
Floated
|
453
|
+
---------------*/
|
454
|
+
|
455
|
+
.ui[class*="left floated"].statistic {
|
456
|
+
float: left;
|
457
|
+
margin: 0em 2em 1em 0em;
|
458
|
+
}
|
459
|
+
.ui[class*="right floated"].statistic {
|
460
|
+
float: right;
|
461
|
+
margin: 0em 0em 1em 2em;
|
462
|
+
}
|
463
|
+
.ui.floated.statistic:last-child {
|
464
|
+
margin-bottom: 0em;
|
465
|
+
}
|
466
|
+
|
467
|
+
/*--------------
|
468
|
+
Stackable
|
469
|
+
---------------*/
|
470
|
+
|
471
|
+
@media only screen and (max-width: 767px) {
|
472
|
+
.ui.stackable.statistics {
|
473
|
+
width: auto;
|
474
|
+
margin-left: 0em !important;
|
475
|
+
margin-right: 0em !important;
|
476
|
+
}
|
477
|
+
.ui.stackable.statistics > .statistic {
|
478
|
+
width: 100% !important;
|
479
|
+
margin: 0em 0em !important;
|
480
|
+
padding: 1rem 1rem !important;
|
481
|
+
}
|
482
|
+
}
|
483
|
+
|
484
|
+
/*--------------
|
485
|
+
Sizes
|
486
|
+
---------------*/
|
487
|
+
|
488
|
+
|
489
|
+
/* Mini */
|
490
|
+
.ui.mini.statistics .statistic > .value,
|
491
|
+
.ui.mini.statistic > .value {
|
492
|
+
font-size: 1.5rem !important;
|
493
|
+
}
|
494
|
+
.ui.mini.horizontal.statistics .statistic > .value,
|
495
|
+
.ui.mini.horizontal.statistic > .value {
|
496
|
+
font-size: 1.5rem !important;
|
497
|
+
}
|
498
|
+
.ui.mini.statistics .statistic > .text.value,
|
499
|
+
.ui.mini.statistic > .text.value {
|
500
|
+
font-size: 1rem !important;
|
501
|
+
}
|
502
|
+
|
503
|
+
/* Tiny */
|
504
|
+
.ui.tiny.statistics .statistic > .value,
|
505
|
+
.ui.tiny.statistic > .value {
|
506
|
+
font-size: 2rem !important;
|
507
|
+
}
|
508
|
+
.ui.tiny.horizontal.statistics .statistic > .value,
|
509
|
+
.ui.tiny.horizontal.statistic > .value {
|
510
|
+
font-size: 2rem !important;
|
511
|
+
}
|
512
|
+
.ui.tiny.statistics .statistic > .text.value,
|
513
|
+
.ui.tiny.statistic > .text.value {
|
514
|
+
font-size: 1rem !important;
|
515
|
+
}
|
516
|
+
|
517
|
+
/* Small */
|
518
|
+
.ui.small.statistics .statistic > .value,
|
519
|
+
.ui.small.statistic > .value {
|
520
|
+
font-size: 3rem !important;
|
521
|
+
}
|
522
|
+
.ui.small.horizontal.statistics .statistic > .value,
|
523
|
+
.ui.small.horizontal.statistic > .value {
|
524
|
+
font-size: 2rem !important;
|
525
|
+
}
|
526
|
+
.ui.small.statistics .statistic > .text.value,
|
527
|
+
.ui.small.statistic > .text.value {
|
528
|
+
font-size: 1rem !important;
|
529
|
+
}
|
530
|
+
|
531
|
+
/* Medium */
|
532
|
+
.ui.statistics .statistic > .value,
|
533
|
+
.ui.statistic > .value {
|
534
|
+
font-size: 4rem !important;
|
535
|
+
}
|
536
|
+
.ui.horizontal.statistics .statistic > .value,
|
537
|
+
.ui.horizontal.statistic > .value {
|
538
|
+
font-size: 3rem !important;
|
539
|
+
}
|
540
|
+
.ui.statistics .statistic > .text.value,
|
541
|
+
.ui.statistic > .text.value {
|
542
|
+
font-size: 2rem !important;
|
543
|
+
}
|
544
|
+
|
545
|
+
/* Large */
|
546
|
+
.ui.large.statistics .statistic > .value,
|
547
|
+
.ui.large.statistic > .value {
|
548
|
+
font-size: 5rem !important;
|
549
|
+
}
|
550
|
+
.ui.large.horizontal.statistics .statistic > .value,
|
551
|
+
.ui.large.horizontal.statistic > .value {
|
552
|
+
font-size: 4rem !important;
|
553
|
+
}
|
554
|
+
.ui.large.statistics .statistic > .text.value,
|
555
|
+
.ui.large.statistic > .text.value {
|
556
|
+
font-size: 2.5rem !important;
|
557
|
+
}
|
558
|
+
|
559
|
+
/* Huge */
|
560
|
+
.ui.huge.statistics .statistic > .value,
|
561
|
+
.ui.huge.statistic > .value {
|
562
|
+
font-size: 6rem !important;
|
563
|
+
}
|
564
|
+
.ui.huge.horizontal.statistics .statistic > .value,
|
565
|
+
.ui.huge.horizontal.statistic > .value {
|
566
|
+
font-size: 5rem !important;
|
567
|
+
}
|
568
|
+
.ui.huge.statistics .statistic > .text.value,
|
569
|
+
.ui.huge.statistic > .text.value {
|
570
|
+
font-size: 2.5rem !important;
|
571
|
+
}
|
572
|
+
|
573
|
+
|
574
|
+
/*******************************
|
575
|
+
Theme Overrides
|
576
|
+
*******************************/
|
577
|
+
|
578
|
+
|
579
|
+
|
580
|
+
/*******************************
|
581
|
+
User Variable Overrides
|
582
|
+
*******************************/
|
583
|
+
|