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,762 @@
|
|
1
|
+
/*!
|
2
|
+
* # Semantic UI 2.6.4 - Header
|
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
|
+
Header
|
14
|
+
*******************************/
|
15
|
+
|
16
|
+
|
17
|
+
/* Standard */
|
18
|
+
.ui.header {
|
19
|
+
border: none;
|
20
|
+
margin: calc(2rem - 0.1428571428571429em) 0em 1rem;
|
21
|
+
padding: 0em 0em;
|
22
|
+
font-family: $font-family;
|
23
|
+
font-weight: bold;
|
24
|
+
line-height: 1.28571429em;
|
25
|
+
text-transform: none;
|
26
|
+
color: rgba(0, 0, 0, 0.87);
|
27
|
+
}
|
28
|
+
.ui.header:first-child {
|
29
|
+
margin-top: -0.14285714em;
|
30
|
+
}
|
31
|
+
.ui.header:last-child {
|
32
|
+
margin-bottom: 0em;
|
33
|
+
}
|
34
|
+
|
35
|
+
/*--------------
|
36
|
+
Sub Header
|
37
|
+
---------------*/
|
38
|
+
|
39
|
+
.ui.header .sub.header {
|
40
|
+
display: block;
|
41
|
+
font-weight: normal;
|
42
|
+
padding: 0em;
|
43
|
+
margin: 0em;
|
44
|
+
font-size: 1rem;
|
45
|
+
line-height: 1.2em;
|
46
|
+
color: rgba(0, 0, 0, 0.6);
|
47
|
+
}
|
48
|
+
|
49
|
+
/*--------------
|
50
|
+
Icon
|
51
|
+
---------------*/
|
52
|
+
|
53
|
+
.ui.header > .icon {
|
54
|
+
display: table-cell;
|
55
|
+
opacity: 1;
|
56
|
+
font-size: 1.5em;
|
57
|
+
padding-top: 0em;
|
58
|
+
vertical-align: middle;
|
59
|
+
}
|
60
|
+
|
61
|
+
/* With Text Node */
|
62
|
+
.ui.header .icon:only-child {
|
63
|
+
display: inline-block;
|
64
|
+
padding: 0em;
|
65
|
+
margin-right: 0.75rem;
|
66
|
+
}
|
67
|
+
|
68
|
+
/*-------------------
|
69
|
+
Image
|
70
|
+
--------------------*/
|
71
|
+
|
72
|
+
.ui.header > .image:not(.icon),
|
73
|
+
.ui.header > img {
|
74
|
+
display: inline-block;
|
75
|
+
margin-top: 0.14285714em;
|
76
|
+
width: 2.5em;
|
77
|
+
height: auto;
|
78
|
+
vertical-align: middle;
|
79
|
+
}
|
80
|
+
.ui.header > .image:not(.icon):only-child,
|
81
|
+
.ui.header > img:only-child {
|
82
|
+
margin-right: 0.75rem;
|
83
|
+
}
|
84
|
+
|
85
|
+
/*--------------
|
86
|
+
Content
|
87
|
+
---------------*/
|
88
|
+
|
89
|
+
.ui.header .content {
|
90
|
+
display: inline-block;
|
91
|
+
vertical-align: top;
|
92
|
+
}
|
93
|
+
|
94
|
+
/* After Image */
|
95
|
+
.ui.header > img + .content,
|
96
|
+
.ui.header > .image + .content {
|
97
|
+
padding-left: 0.75rem;
|
98
|
+
vertical-align: middle;
|
99
|
+
}
|
100
|
+
|
101
|
+
/* After Icon */
|
102
|
+
.ui.header > .icon + .content {
|
103
|
+
padding-left: 0.75rem;
|
104
|
+
display: table-cell;
|
105
|
+
vertical-align: middle;
|
106
|
+
}
|
107
|
+
|
108
|
+
/*--------------
|
109
|
+
Loose Coupling
|
110
|
+
---------------*/
|
111
|
+
|
112
|
+
.ui.header .ui.label {
|
113
|
+
font-size: '';
|
114
|
+
margin-left: 0.5rem;
|
115
|
+
vertical-align: middle;
|
116
|
+
}
|
117
|
+
|
118
|
+
/* Positioning */
|
119
|
+
.ui.header + p {
|
120
|
+
margin-top: 0em;
|
121
|
+
}
|
122
|
+
|
123
|
+
|
124
|
+
/*******************************
|
125
|
+
Types
|
126
|
+
*******************************/
|
127
|
+
|
128
|
+
|
129
|
+
/*--------------
|
130
|
+
Page
|
131
|
+
---------------*/
|
132
|
+
|
133
|
+
h1.ui.header {
|
134
|
+
font-size: 2rem;
|
135
|
+
}
|
136
|
+
h2.ui.header {
|
137
|
+
font-size: 1.71428571rem;
|
138
|
+
}
|
139
|
+
h3.ui.header {
|
140
|
+
font-size: 1.28571429rem;
|
141
|
+
}
|
142
|
+
h4.ui.header {
|
143
|
+
font-size: 1.07142857rem;
|
144
|
+
}
|
145
|
+
h5.ui.header {
|
146
|
+
font-size: 1rem;
|
147
|
+
}
|
148
|
+
|
149
|
+
/* Sub Header */
|
150
|
+
h1.ui.header .sub.header {
|
151
|
+
font-size: 1.14285714rem;
|
152
|
+
}
|
153
|
+
h2.ui.header .sub.header {
|
154
|
+
font-size: 1.14285714rem;
|
155
|
+
}
|
156
|
+
h3.ui.header .sub.header {
|
157
|
+
font-size: 1rem;
|
158
|
+
}
|
159
|
+
h4.ui.header .sub.header {
|
160
|
+
font-size: 1rem;
|
161
|
+
}
|
162
|
+
h5.ui.header .sub.header {
|
163
|
+
font-size: 0.92857143rem;
|
164
|
+
}
|
165
|
+
|
166
|
+
/*--------------
|
167
|
+
Content Heading
|
168
|
+
---------------*/
|
169
|
+
|
170
|
+
.ui.huge.header {
|
171
|
+
min-height: 1em;
|
172
|
+
font-size: 2em;
|
173
|
+
}
|
174
|
+
.ui.large.header {
|
175
|
+
font-size: 1.71428571em;
|
176
|
+
}
|
177
|
+
.ui.medium.header {
|
178
|
+
font-size: 1.28571429em;
|
179
|
+
}
|
180
|
+
.ui.small.header {
|
181
|
+
font-size: 1.07142857em;
|
182
|
+
}
|
183
|
+
.ui.tiny.header {
|
184
|
+
font-size: 1em;
|
185
|
+
}
|
186
|
+
|
187
|
+
/* Sub Header */
|
188
|
+
.ui.huge.header .sub.header {
|
189
|
+
font-size: 1.14285714rem;
|
190
|
+
}
|
191
|
+
.ui.large.header .sub.header {
|
192
|
+
font-size: 1.14285714rem;
|
193
|
+
}
|
194
|
+
.ui.header .sub.header {
|
195
|
+
font-size: 1rem;
|
196
|
+
}
|
197
|
+
.ui.small.header .sub.header {
|
198
|
+
font-size: 1rem;
|
199
|
+
}
|
200
|
+
.ui.tiny.header .sub.header {
|
201
|
+
font-size: 0.92857143rem;
|
202
|
+
}
|
203
|
+
|
204
|
+
/*--------------
|
205
|
+
Sub Heading
|
206
|
+
---------------*/
|
207
|
+
|
208
|
+
.ui.sub.header {
|
209
|
+
padding: 0em;
|
210
|
+
margin-bottom: 0.14285714rem;
|
211
|
+
font-weight: bold;
|
212
|
+
font-size: 0.85714286em;
|
213
|
+
text-transform: uppercase;
|
214
|
+
color: '';
|
215
|
+
}
|
216
|
+
.ui.small.sub.header {
|
217
|
+
font-size: 0.78571429em;
|
218
|
+
}
|
219
|
+
.ui.large.sub.header {
|
220
|
+
font-size: 0.92857143em;
|
221
|
+
}
|
222
|
+
.ui.huge.sub.header {
|
223
|
+
font-size: 1em;
|
224
|
+
}
|
225
|
+
|
226
|
+
/*-------------------
|
227
|
+
Icon
|
228
|
+
--------------------*/
|
229
|
+
|
230
|
+
.ui.icon.header {
|
231
|
+
display: inline-block;
|
232
|
+
text-align: center;
|
233
|
+
margin: 2rem 0em 1rem;
|
234
|
+
}
|
235
|
+
.ui.icon.header:after {
|
236
|
+
content: '';
|
237
|
+
display: block;
|
238
|
+
height: 0px;
|
239
|
+
clear: both;
|
240
|
+
visibility: hidden;
|
241
|
+
}
|
242
|
+
.ui.icon.header:first-child {
|
243
|
+
margin-top: 0em;
|
244
|
+
}
|
245
|
+
.ui.icon.header .icon {
|
246
|
+
float: none;
|
247
|
+
display: block;
|
248
|
+
width: auto;
|
249
|
+
height: auto;
|
250
|
+
line-height: 1;
|
251
|
+
padding: 0em;
|
252
|
+
font-size: 3em;
|
253
|
+
margin: 0em auto 0.5rem;
|
254
|
+
opacity: 1;
|
255
|
+
}
|
256
|
+
.ui.icon.header .corner.icon {
|
257
|
+
font-size: calc(1.35em);
|
258
|
+
}
|
259
|
+
.ui.icon.header .content {
|
260
|
+
display: block;
|
261
|
+
padding: 0em;
|
262
|
+
}
|
263
|
+
.ui.icon.header .circular.icon {
|
264
|
+
font-size: 2em;
|
265
|
+
}
|
266
|
+
.ui.icon.header .square.icon {
|
267
|
+
font-size: 2em;
|
268
|
+
}
|
269
|
+
.ui.block.icon.header .icon {
|
270
|
+
margin-bottom: 0em;
|
271
|
+
}
|
272
|
+
.ui.icon.header.aligned {
|
273
|
+
margin-left: auto;
|
274
|
+
margin-right: auto;
|
275
|
+
display: block;
|
276
|
+
}
|
277
|
+
|
278
|
+
|
279
|
+
/*******************************
|
280
|
+
States
|
281
|
+
*******************************/
|
282
|
+
|
283
|
+
.ui.disabled.header {
|
284
|
+
opacity: 0.45;
|
285
|
+
}
|
286
|
+
|
287
|
+
|
288
|
+
/*******************************
|
289
|
+
Variations
|
290
|
+
*******************************/
|
291
|
+
|
292
|
+
|
293
|
+
/*-------------------
|
294
|
+
Inverted
|
295
|
+
--------------------*/
|
296
|
+
|
297
|
+
.ui.inverted.header {
|
298
|
+
color: #FFFFFF;
|
299
|
+
}
|
300
|
+
.ui.inverted.header .sub.header {
|
301
|
+
color: rgba(255, 255, 255, 0.8);
|
302
|
+
}
|
303
|
+
.ui.inverted.attached.header {
|
304
|
+
background: #545454 -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
|
305
|
+
background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
|
306
|
+
background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
|
307
|
+
-webkit-box-shadow: none;
|
308
|
+
box-shadow: none;
|
309
|
+
border-color: transparent;
|
310
|
+
}
|
311
|
+
.ui.inverted.block.header {
|
312
|
+
background: #545454 -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.05)));
|
313
|
+
background: #545454 -webkit-linear-gradient(transparent, rgba(0, 0, 0, 0.05));
|
314
|
+
background: #545454 linear-gradient(transparent, rgba(0, 0, 0, 0.05));
|
315
|
+
-webkit-box-shadow: none;
|
316
|
+
box-shadow: none;
|
317
|
+
border-bottom: none;
|
318
|
+
}
|
319
|
+
|
320
|
+
/*-------------------
|
321
|
+
Colors
|
322
|
+
--------------------*/
|
323
|
+
|
324
|
+
|
325
|
+
/*--- Primary ---*/
|
326
|
+
|
327
|
+
.ui.primary.header {
|
328
|
+
color: #2185D0 !important;
|
329
|
+
}
|
330
|
+
a.ui.primary.header:hover {
|
331
|
+
color: #2185D0 !important;
|
332
|
+
}
|
333
|
+
.ui.primary.dividing.header {
|
334
|
+
border-bottom: 2px solid #2185D0;
|
335
|
+
}
|
336
|
+
|
337
|
+
/* Inverted */
|
338
|
+
.ui.inverted.primary.header {
|
339
|
+
color: #54C8FF !important;
|
340
|
+
}
|
341
|
+
a.ui.inverted.primary.header:hover {
|
342
|
+
color: #54C8FF !important;
|
343
|
+
}
|
344
|
+
|
345
|
+
/*--- Secondary ---*/
|
346
|
+
|
347
|
+
.ui.secondary.header {
|
348
|
+
color: #1B1C1D !important;
|
349
|
+
}
|
350
|
+
a.ui.secondary.header:hover {
|
351
|
+
color: #1B1C1D !important;
|
352
|
+
}
|
353
|
+
.ui.secondary.dividing.header {
|
354
|
+
border-bottom: 2px solid #1B1C1D;
|
355
|
+
}
|
356
|
+
|
357
|
+
/* Inverted */
|
358
|
+
.ui.inverted.secondary.header {
|
359
|
+
color: #545454 !important;
|
360
|
+
}
|
361
|
+
a.ui.inverted.secondary.header:hover {
|
362
|
+
color: #545454 !important;
|
363
|
+
}
|
364
|
+
|
365
|
+
/*--- Red ---*/
|
366
|
+
|
367
|
+
.ui.red.header {
|
368
|
+
color: #DB2828 !important;
|
369
|
+
}
|
370
|
+
a.ui.red.header:hover {
|
371
|
+
color: #d01919 !important;
|
372
|
+
}
|
373
|
+
.ui.red.dividing.header {
|
374
|
+
border-bottom: 2px solid #DB2828;
|
375
|
+
}
|
376
|
+
|
377
|
+
/* Inverted */
|
378
|
+
.ui.inverted.red.header {
|
379
|
+
color: #FF695E !important;
|
380
|
+
}
|
381
|
+
a.ui.inverted.red.header:hover {
|
382
|
+
color: #ff5144 !important;
|
383
|
+
}
|
384
|
+
|
385
|
+
/*--- Orange ---*/
|
386
|
+
|
387
|
+
.ui.orange.header {
|
388
|
+
color: #F2711C !important;
|
389
|
+
}
|
390
|
+
a.ui.orange.header:hover {
|
391
|
+
color: #f26202 !important;
|
392
|
+
}
|
393
|
+
.ui.orange.dividing.header {
|
394
|
+
border-bottom: 2px solid #F2711C;
|
395
|
+
}
|
396
|
+
|
397
|
+
/* Inverted */
|
398
|
+
.ui.inverted.orange.header {
|
399
|
+
color: #FF851B !important;
|
400
|
+
}
|
401
|
+
a.ui.inverted.orange.header:hover {
|
402
|
+
color: #ff7701 !important;
|
403
|
+
}
|
404
|
+
|
405
|
+
/*--- Olive ---*/
|
406
|
+
|
407
|
+
.ui.olive.header {
|
408
|
+
color: #B5CC18 !important;
|
409
|
+
}
|
410
|
+
a.ui.olive.header:hover {
|
411
|
+
color: #a7bd0d !important;
|
412
|
+
}
|
413
|
+
.ui.olive.dividing.header {
|
414
|
+
border-bottom: 2px solid #B5CC18;
|
415
|
+
}
|
416
|
+
|
417
|
+
/* Inverted */
|
418
|
+
.ui.inverted.olive.header {
|
419
|
+
color: #D9E778 !important;
|
420
|
+
}
|
421
|
+
a.ui.inverted.olive.header:hover {
|
422
|
+
color: #d8ea5c !important;
|
423
|
+
}
|
424
|
+
|
425
|
+
/*--- Yellow ---*/
|
426
|
+
|
427
|
+
.ui.yellow.header {
|
428
|
+
color: #FBBD08 !important;
|
429
|
+
}
|
430
|
+
a.ui.yellow.header:hover {
|
431
|
+
color: #eaae00 !important;
|
432
|
+
}
|
433
|
+
.ui.yellow.dividing.header {
|
434
|
+
border-bottom: 2px solid #FBBD08;
|
435
|
+
}
|
436
|
+
|
437
|
+
/* Inverted */
|
438
|
+
.ui.inverted.yellow.header {
|
439
|
+
color: #FFE21F !important;
|
440
|
+
}
|
441
|
+
a.ui.inverted.yellow.header:hover {
|
442
|
+
color: #ffdf05 !important;
|
443
|
+
}
|
444
|
+
|
445
|
+
/*--- Green ---*/
|
446
|
+
|
447
|
+
.ui.green.header {
|
448
|
+
color: #21BA45 !important;
|
449
|
+
}
|
450
|
+
a.ui.green.header:hover {
|
451
|
+
color: #16ab39 !important;
|
452
|
+
}
|
453
|
+
.ui.green.dividing.header {
|
454
|
+
border-bottom: 2px solid #21BA45;
|
455
|
+
}
|
456
|
+
|
457
|
+
/* Inverted */
|
458
|
+
.ui.inverted.green.header {
|
459
|
+
color: #2ECC40 !important;
|
460
|
+
}
|
461
|
+
a.ui.inverted.green.header:hover {
|
462
|
+
color: #22be34 !important;
|
463
|
+
}
|
464
|
+
|
465
|
+
/*--- Teal ---*/
|
466
|
+
|
467
|
+
.ui.teal.header {
|
468
|
+
color: #00B5AD !important;
|
469
|
+
}
|
470
|
+
a.ui.teal.header:hover {
|
471
|
+
color: #009c95 !important;
|
472
|
+
}
|
473
|
+
.ui.teal.dividing.header {
|
474
|
+
border-bottom: 2px solid #00B5AD;
|
475
|
+
}
|
476
|
+
|
477
|
+
/* Inverted */
|
478
|
+
.ui.inverted.teal.header {
|
479
|
+
color: #6DFFFF !important;
|
480
|
+
}
|
481
|
+
a.ui.inverted.teal.header:hover {
|
482
|
+
color: #54ffff !important;
|
483
|
+
}
|
484
|
+
|
485
|
+
/*--- Blue ---*/
|
486
|
+
|
487
|
+
.ui.blue.header {
|
488
|
+
color: #2185D0 !important;
|
489
|
+
}
|
490
|
+
a.ui.blue.header:hover {
|
491
|
+
color: #1678c2 !important;
|
492
|
+
}
|
493
|
+
.ui.blue.dividing.header {
|
494
|
+
border-bottom: 2px solid #2185D0;
|
495
|
+
}
|
496
|
+
|
497
|
+
/* Inverted */
|
498
|
+
.ui.inverted.blue.header {
|
499
|
+
color: #54C8FF !important;
|
500
|
+
}
|
501
|
+
a.ui.inverted.blue.header:hover {
|
502
|
+
color: #3ac0ff !important;
|
503
|
+
}
|
504
|
+
|
505
|
+
/*--- Violet ---*/
|
506
|
+
|
507
|
+
.ui.violet.header {
|
508
|
+
color: #6435C9 !important;
|
509
|
+
}
|
510
|
+
a.ui.violet.header:hover {
|
511
|
+
color: #5829bb !important;
|
512
|
+
}
|
513
|
+
.ui.violet.dividing.header {
|
514
|
+
border-bottom: 2px solid #6435C9;
|
515
|
+
}
|
516
|
+
|
517
|
+
/* Inverted */
|
518
|
+
.ui.inverted.violet.header {
|
519
|
+
color: #A291FB !important;
|
520
|
+
}
|
521
|
+
a.ui.inverted.violet.header:hover {
|
522
|
+
color: #8a73ff !important;
|
523
|
+
}
|
524
|
+
|
525
|
+
/*--- Purple ---*/
|
526
|
+
|
527
|
+
.ui.purple.header {
|
528
|
+
color: #A333C8 !important;
|
529
|
+
}
|
530
|
+
a.ui.purple.header:hover {
|
531
|
+
color: #9627ba !important;
|
532
|
+
}
|
533
|
+
.ui.purple.dividing.header {
|
534
|
+
border-bottom: 2px solid #A333C8;
|
535
|
+
}
|
536
|
+
|
537
|
+
/* Inverted */
|
538
|
+
.ui.inverted.purple.header {
|
539
|
+
color: #DC73FF !important;
|
540
|
+
}
|
541
|
+
a.ui.inverted.purple.header:hover {
|
542
|
+
color: #d65aff !important;
|
543
|
+
}
|
544
|
+
|
545
|
+
/*--- Pink ---*/
|
546
|
+
|
547
|
+
.ui.pink.header {
|
548
|
+
color: #E03997 !important;
|
549
|
+
}
|
550
|
+
a.ui.pink.header:hover {
|
551
|
+
color: #e61a8d !important;
|
552
|
+
}
|
553
|
+
.ui.pink.dividing.header {
|
554
|
+
border-bottom: 2px solid #E03997;
|
555
|
+
}
|
556
|
+
|
557
|
+
/* Inverted */
|
558
|
+
.ui.inverted.pink.header {
|
559
|
+
color: #FF8EDF !important;
|
560
|
+
}
|
561
|
+
a.ui.inverted.pink.header:hover {
|
562
|
+
color: #ff74d8 !important;
|
563
|
+
}
|
564
|
+
|
565
|
+
/*--- Brown ---*/
|
566
|
+
|
567
|
+
.ui.brown.header {
|
568
|
+
color: #A5673F !important;
|
569
|
+
}
|
570
|
+
a.ui.brown.header:hover {
|
571
|
+
color: #975b33 !important;
|
572
|
+
}
|
573
|
+
.ui.brown.dividing.header {
|
574
|
+
border-bottom: 2px solid #A5673F;
|
575
|
+
}
|
576
|
+
|
577
|
+
/* Inverted */
|
578
|
+
.ui.inverted.brown.header {
|
579
|
+
color: #D67C1C !important;
|
580
|
+
}
|
581
|
+
a.ui.inverted.brown.header:hover {
|
582
|
+
color: #c86f11 !important;
|
583
|
+
}
|
584
|
+
|
585
|
+
/*--- Grey ---*/
|
586
|
+
|
587
|
+
.ui.grey.header {
|
588
|
+
color: #767676 !important;
|
589
|
+
}
|
590
|
+
a.ui.grey.header:hover {
|
591
|
+
color: #838383 !important;
|
592
|
+
}
|
593
|
+
.ui.grey.dividing.header {
|
594
|
+
border-bottom: 2px solid #767676;
|
595
|
+
}
|
596
|
+
|
597
|
+
/* Inverted */
|
598
|
+
.ui.inverted.grey.header {
|
599
|
+
color: #DCDDDE !important;
|
600
|
+
}
|
601
|
+
a.ui.inverted.grey.header:hover {
|
602
|
+
color: #cfd0d2 !important;
|
603
|
+
}
|
604
|
+
|
605
|
+
/*-------------------
|
606
|
+
Aligned
|
607
|
+
--------------------*/
|
608
|
+
|
609
|
+
.ui.left.aligned.header {
|
610
|
+
text-align: left;
|
611
|
+
}
|
612
|
+
.ui.right.aligned.header {
|
613
|
+
text-align: right;
|
614
|
+
}
|
615
|
+
.ui.centered.header,
|
616
|
+
.ui.center.aligned.header {
|
617
|
+
text-align: center;
|
618
|
+
}
|
619
|
+
.ui.justified.header {
|
620
|
+
text-align: justify;
|
621
|
+
}
|
622
|
+
.ui.justified.header:after {
|
623
|
+
display: inline-block;
|
624
|
+
content: '';
|
625
|
+
width: 100%;
|
626
|
+
}
|
627
|
+
|
628
|
+
/*-------------------
|
629
|
+
Floated
|
630
|
+
--------------------*/
|
631
|
+
|
632
|
+
.ui.floated.header,
|
633
|
+
.ui[class*="left floated"].header {
|
634
|
+
float: left;
|
635
|
+
margin-top: 0em;
|
636
|
+
margin-right: 0.5em;
|
637
|
+
}
|
638
|
+
.ui[class*="right floated"].header {
|
639
|
+
float: right;
|
640
|
+
margin-top: 0em;
|
641
|
+
margin-left: 0.5em;
|
642
|
+
}
|
643
|
+
|
644
|
+
/*-------------------
|
645
|
+
Fitted
|
646
|
+
--------------------*/
|
647
|
+
|
648
|
+
.ui.fitted.header {
|
649
|
+
padding: 0em;
|
650
|
+
}
|
651
|
+
|
652
|
+
/*-------------------
|
653
|
+
Dividing
|
654
|
+
--------------------*/
|
655
|
+
|
656
|
+
.ui.dividing.header {
|
657
|
+
padding-bottom: 0.21428571rem;
|
658
|
+
border-bottom: 1px solid rgba(34, 36, 38, 0.15);
|
659
|
+
}
|
660
|
+
.ui.dividing.header .sub.header {
|
661
|
+
padding-bottom: 0.21428571rem;
|
662
|
+
}
|
663
|
+
.ui.dividing.header .icon {
|
664
|
+
margin-bottom: 0em;
|
665
|
+
}
|
666
|
+
.ui.inverted.dividing.header {
|
667
|
+
border-bottom-color: rgba(255, 255, 255, 0.1);
|
668
|
+
}
|
669
|
+
|
670
|
+
/*-------------------
|
671
|
+
Block
|
672
|
+
--------------------*/
|
673
|
+
|
674
|
+
.ui.block.header {
|
675
|
+
background: #F3F4F5;
|
676
|
+
padding: 0.78571429rem 1rem;
|
677
|
+
-webkit-box-shadow: none;
|
678
|
+
box-shadow: none;
|
679
|
+
border: 1px solid #D4D4D5;
|
680
|
+
border-radius: 0.28571429rem;
|
681
|
+
}
|
682
|
+
.ui.tiny.block.header {
|
683
|
+
font-size: 0.85714286rem;
|
684
|
+
}
|
685
|
+
.ui.small.block.header {
|
686
|
+
font-size: 0.92857143rem;
|
687
|
+
}
|
688
|
+
.ui.block.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
|
689
|
+
font-size: 1rem;
|
690
|
+
}
|
691
|
+
.ui.large.block.header {
|
692
|
+
font-size: 1.14285714rem;
|
693
|
+
}
|
694
|
+
.ui.huge.block.header {
|
695
|
+
font-size: 1.42857143rem;
|
696
|
+
}
|
697
|
+
|
698
|
+
/*-------------------
|
699
|
+
Attached
|
700
|
+
--------------------*/
|
701
|
+
|
702
|
+
.ui.attached.header {
|
703
|
+
background: #FFFFFF;
|
704
|
+
padding: 0.78571429rem 1rem;
|
705
|
+
margin-top: 0em;
|
706
|
+
margin-bottom: 0em;
|
707
|
+
margin-left: -1px;
|
708
|
+
margin-right: -1px;
|
709
|
+
-webkit-box-shadow: none;
|
710
|
+
box-shadow: none;
|
711
|
+
border: 1px solid #D4D4D5;
|
712
|
+
border-radius: 0em;
|
713
|
+
}
|
714
|
+
.ui.attached.block.header {
|
715
|
+
background: #F3F4F5;
|
716
|
+
}
|
717
|
+
.ui.attached:not(.top).header {
|
718
|
+
border-top: none;
|
719
|
+
}
|
720
|
+
.ui.top.attached.header {
|
721
|
+
border-radius: 0.28571429rem 0.28571429rem 0em 0em;
|
722
|
+
}
|
723
|
+
.ui.bottom.attached.header {
|
724
|
+
border-radius: 0em 0em 0.28571429rem 0.28571429rem;
|
725
|
+
}
|
726
|
+
|
727
|
+
/* Attached Sizes */
|
728
|
+
.ui.tiny.attached.header {
|
729
|
+
font-size: 0.85714286em;
|
730
|
+
}
|
731
|
+
.ui.small.attached.header {
|
732
|
+
font-size: 0.92857143em;
|
733
|
+
}
|
734
|
+
.ui.attached.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
|
735
|
+
font-size: 1em;
|
736
|
+
}
|
737
|
+
.ui.large.attached.header {
|
738
|
+
font-size: 1.14285714em;
|
739
|
+
}
|
740
|
+
.ui.huge.attached.header {
|
741
|
+
font-size: 1.42857143em;
|
742
|
+
}
|
743
|
+
|
744
|
+
/*-------------------
|
745
|
+
Sizing
|
746
|
+
--------------------*/
|
747
|
+
|
748
|
+
.ui.header:not(h1):not(h2):not(h3):not(h4):not(h5):not(h6) {
|
749
|
+
font-size: 1.28571429em;
|
750
|
+
}
|
751
|
+
|
752
|
+
|
753
|
+
/*******************************
|
754
|
+
Theme Overrides
|
755
|
+
*******************************/
|
756
|
+
|
757
|
+
|
758
|
+
|
759
|
+
/*******************************
|
760
|
+
Site Overrides
|
761
|
+
*******************************/
|
762
|
+
|