semantic-ui-sass 0.19.3.1 → 1.7.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (107) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +21 -0
  3. data/README.md +5 -6
  4. data/app/assets/fonts/semantic-ui/icons.eot +0 -0
  5. data/app/assets/fonts/semantic-ui/icons.otf +0 -0
  6. data/app/assets/fonts/semantic-ui/icons.svg +472 -367
  7. data/app/assets/fonts/semantic-ui/icons.ttf +0 -0
  8. data/app/assets/fonts/semantic-ui/icons.woff +0 -0
  9. data/app/assets/images/semantic-ui/flags.png +0 -0
  10. data/app/assets/javascripts/semantic-ui.js +9 -5
  11. data/app/assets/javascripts/semantic-ui/accordion.js +169 -102
  12. data/app/assets/javascripts/semantic-ui/api.js +840 -0
  13. data/app/assets/javascripts/semantic-ui/checkbox.js +203 -46
  14. data/app/assets/javascripts/semantic-ui/{behavior/colorize.js → colorize.js} +4 -2
  15. data/app/assets/javascripts/semantic-ui/dimmer.js +110 -76
  16. data/app/assets/javascripts/semantic-ui/dropdown.js +897 -285
  17. data/app/assets/javascripts/semantic-ui/{behavior/form.js → form.js} +127 -42
  18. data/app/assets/javascripts/semantic-ui/modal.js +294 -219
  19. data/app/assets/javascripts/semantic-ui/nag.js +120 -186
  20. data/app/assets/javascripts/semantic-ui/popup.js +491 -223
  21. data/app/assets/javascripts/semantic-ui/progress.js +779 -0
  22. data/app/assets/javascripts/semantic-ui/rating.js +66 -22
  23. data/app/assets/javascripts/semantic-ui/search.js +219 -99
  24. data/app/assets/javascripts/semantic-ui/shape.js +72 -29
  25. data/app/assets/javascripts/semantic-ui/sidebar.js +678 -142
  26. data/app/assets/javascripts/semantic-ui/site.js +487 -0
  27. data/app/assets/javascripts/semantic-ui/{behavior/state.js → state.js} +116 -151
  28. data/app/assets/javascripts/semantic-ui/sticky.js +771 -0
  29. data/app/assets/javascripts/semantic-ui/tab.js +680 -603
  30. data/app/assets/javascripts/semantic-ui/transition.js +269 -158
  31. data/app/assets/javascripts/semantic-ui/video.js +113 -32
  32. data/app/assets/javascripts/semantic-ui/visibility.js +970 -0
  33. data/app/assets/javascripts/semantic-ui/visit.js +513 -0
  34. data/app/assets/stylesheets/semantic-ui.scss +2 -0
  35. data/app/assets/stylesheets/semantic-ui/collections/_breadcrumb.scss +58 -14
  36. data/app/assets/stylesheets/semantic-ui/collections/_form.scss +464 -372
  37. data/app/assets/stylesheets/semantic-ui/collections/_grid.scss +1385 -533
  38. data/app/assets/stylesheets/semantic-ui/collections/_menu.scss +482 -655
  39. data/app/assets/stylesheets/semantic-ui/collections/_message.scss +238 -139
  40. data/app/assets/stylesheets/semantic-ui/collections/_table.scss +631 -280
  41. data/app/assets/stylesheets/semantic-ui/elements/_all.scss +3 -2
  42. data/app/assets/stylesheets/semantic-ui/elements/_button.scss +1614 -657
  43. data/app/assets/stylesheets/semantic-ui/elements/_divider.scss +143 -80
  44. data/app/assets/stylesheets/semantic-ui/elements/_flag.scss +1018 -0
  45. data/app/assets/stylesheets/semantic-ui/elements/_header.scss +302 -145
  46. data/app/assets/stylesheets/semantic-ui/elements/_icon.scss +1653 -1365
  47. data/app/assets/stylesheets/semantic-ui/elements/_image.scss +160 -59
  48. data/app/assets/stylesheets/semantic-ui/elements/_input.scss +247 -118
  49. data/app/assets/stylesheets/semantic-ui/elements/_label.scss +501 -470
  50. data/app/assets/stylesheets/semantic-ui/elements/_list.scss +888 -0
  51. data/app/assets/stylesheets/semantic-ui/elements/_loader.scss +189 -98
  52. data/app/assets/stylesheets/semantic-ui/elements/_rail.scss +125 -0
  53. data/app/assets/stylesheets/semantic-ui/elements/_reveal.scss +147 -212
  54. data/app/assets/stylesheets/semantic-ui/elements/_segment.scss +328 -190
  55. data/app/assets/stylesheets/semantic-ui/elements/_step.scss +261 -185
  56. data/app/assets/stylesheets/semantic-ui/globals/_all.scss +2 -0
  57. data/app/assets/stylesheets/semantic-ui/globals/_reset.scss +430 -0
  58. data/app/assets/stylesheets/semantic-ui/globals/_site.scss +128 -0
  59. data/app/assets/stylesheets/semantic-ui/modules/_accordion.scss +190 -106
  60. data/app/assets/stylesheets/semantic-ui/modules/_all.scss +2 -1
  61. data/app/assets/stylesheets/semantic-ui/modules/_checkbox.scss +303 -201
  62. data/app/assets/stylesheets/semantic-ui/modules/_dimmer.scss +72 -63
  63. data/app/assets/stylesheets/semantic-ui/modules/_dropdown.scss +711 -331
  64. data/app/assets/stylesheets/semantic-ui/modules/_modal.scss +262 -140
  65. data/app/assets/stylesheets/semantic-ui/modules/_nag.scss +82 -71
  66. data/app/assets/stylesheets/semantic-ui/modules/_popup.scss +163 -119
  67. data/app/assets/stylesheets/semantic-ui/modules/_progress.scss +435 -0
  68. data/app/assets/stylesheets/semantic-ui/modules/_rating.scss +163 -68
  69. data/app/assets/stylesheets/semantic-ui/modules/_search.scss +223 -150
  70. data/app/assets/stylesheets/semantic-ui/modules/_shape.scss +39 -40
  71. data/app/assets/stylesheets/semantic-ui/modules/_sidebar.scss +413 -147
  72. data/app/assets/stylesheets/semantic-ui/modules/_sticky.scss +80 -0
  73. data/app/assets/stylesheets/semantic-ui/modules/_tab.scss +49 -20
  74. data/app/assets/stylesheets/semantic-ui/modules/_transition.scss +542 -568
  75. data/app/assets/stylesheets/semantic-ui/modules/_video.scss +69 -37
  76. data/app/assets/stylesheets/semantic-ui/views/_ad.scss +265 -0
  77. data/app/assets/stylesheets/semantic-ui/views/_all.scss +1 -1
  78. data/app/assets/stylesheets/semantic-ui/views/_card.scss +758 -0
  79. data/app/assets/stylesheets/semantic-ui/views/_comment.scss +133 -92
  80. data/app/assets/stylesheets/semantic-ui/views/_feed.scss +200 -87
  81. data/app/assets/stylesheets/semantic-ui/views/_item.scss +298 -523
  82. data/app/assets/stylesheets/semantic-ui/views/_statistic.scss +390 -12
  83. data/lib/semantic/ui/sass/version.rb +2 -2
  84. data/tasks/converter.rb +99 -216
  85. metadata +22 -27
  86. data/app/assets/fonts/semantic-ui/basic.icons.eot +0 -0
  87. data/app/assets/fonts/semantic-ui/basic.icons.svg +0 -450
  88. data/app/assets/fonts/semantic-ui/basic.icons.ttf +0 -0
  89. data/app/assets/fonts/semantic-ui/basic.icons.woff +0 -0
  90. data/app/assets/images/semantic-ui/loader-large-inverted.gif +0 -0
  91. data/app/assets/images/semantic-ui/loader-large.gif +0 -0
  92. data/app/assets/images/semantic-ui/loader-medium-inverted.gif +0 -0
  93. data/app/assets/images/semantic-ui/loader-medium.gif +0 -0
  94. data/app/assets/images/semantic-ui/loader-mini-inverted.gif +0 -0
  95. data/app/assets/images/semantic-ui/loader-mini.gif +0 -0
  96. data/app/assets/images/semantic-ui/loader-small-inverted.gif +0 -0
  97. data/app/assets/images/semantic-ui/loader-small.gif +0 -0
  98. data/app/assets/javascripts/semantic-ui/behavior/api.js +0 -634
  99. data/app/assets/javascripts/semantic-ui/chatroom.js +0 -772
  100. data/app/assets/stylesheets/semantic-ui/depends/_basic.icon.scss +0 -4
  101. data/app/assets/stylesheets/semantic-ui/depends/_icon.scss +0 -4
  102. data/app/assets/stylesheets/semantic-ui/depends/_loader.scss +0 -8
  103. data/app/assets/stylesheets/semantic-ui/elements/_basic.icon.scss +0 -1124
  104. data/app/assets/stylesheets/semantic-ui/elements/_progress.scss +0 -280
  105. data/app/assets/stylesheets/semantic-ui/modules/_chatroom.scss +0 -299
  106. data/app/assets/stylesheets/semantic-ui/modules/_reveal.scss +0 -322
  107. data/app/assets/stylesheets/semantic-ui/views/_list.scss +0 -700
@@ -0,0 +1,2 @@
1
+ @import 'site';
2
+ @import 'reset';
@@ -0,0 +1,430 @@
1
+ /*
2
+ * # Semantic UI
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
+ *
6
+ * Copyright 2014 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+
12
+
13
+
14
+ /*******************************
15
+ Reset
16
+ *******************************/
17
+
18
+
19
+ /* Border-Box */
20
+ *,
21
+ *:before,
22
+ *:after {
23
+ box-sizing: inherit;
24
+ }
25
+ html {
26
+ box-sizing: border-box;
27
+ }
28
+
29
+ /* iPad Input Shadows */
30
+ input[type="text"],
31
+ input[type="email"],
32
+ input[type="search"],
33
+ input[type="password"] {
34
+ -webkit-appearance: none;
35
+ -moz-appearance: none;
36
+
37
+ /* mobile firefox too! */
38
+ }
39
+
40
+
41
+ /*******************************
42
+ Theme Overrides
43
+ *******************************/
44
+
45
+ /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
46
+ /**
47
+ * Correct `block` display not defined in IE 8/9.
48
+ */
49
+ /*! normalize.css v3.0.1 | MIT License | git.io/normalize */
50
+ /**
51
+ * 1. Set default font family to sans-serif.
52
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
53
+ * user zoom.
54
+ */
55
+ html {
56
+ font-family: sans-serif;
57
+
58
+ /* 1 */
59
+ -ms-text-size-adjust: 100%;
60
+
61
+ /* 2 */
62
+ -webkit-text-size-adjust: 100%;
63
+
64
+ /* 2 */
65
+ }
66
+ /**
67
+ * Remove default margin.
68
+ */
69
+ body {
70
+ margin: 0;
71
+ }
72
+
73
+ /* HTML5 display definitions
74
+ ========================================================================== */
75
+ /**
76
+ * Correct `block` display not defined for any HTML5 element in IE 8/9.
77
+ * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
78
+ * Correct `block` display not defined for `main` in IE 11.
79
+ */
80
+ article,
81
+ aside,
82
+ details,
83
+ figcaption,
84
+ figure,
85
+ footer,
86
+ header,
87
+ hgroup,
88
+ main,
89
+ nav,
90
+ section,
91
+ summary {
92
+ display: block;
93
+ }
94
+ /**
95
+ * 1. Correct `inline-block` display not defined in IE 8/9.
96
+ * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
97
+ */
98
+ audio,
99
+ canvas,
100
+ progress,
101
+ video {
102
+ display: inline-block;
103
+
104
+ /* 1 */
105
+ vertical-align: baseline;
106
+
107
+ /* 2 */
108
+ }
109
+ /**
110
+ * Prevent modern browsers from displaying `audio` without controls.
111
+ * Remove excess height in iOS 5 devices.
112
+ */
113
+ audio:not([controls]) {
114
+ display: none;
115
+ height: 0;
116
+ }
117
+ /**
118
+ * Address `[hidden]` styling not present in IE 8/9/10.
119
+ * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
120
+ */
121
+ [hidden],
122
+ template {
123
+ display: none;
124
+ }
125
+
126
+ /* Links
127
+ ========================================================================== */
128
+ /**
129
+ * Remove the gray background color from active links in IE 10.
130
+ */
131
+ a {
132
+ background: transparent;
133
+ }
134
+ /**
135
+ * Improve readability when focused and also mouse hovered in all browsers.
136
+ */
137
+ a:active,
138
+ a:hover {
139
+ outline: 0;
140
+ }
141
+
142
+ /* Text-level semantics
143
+ ========================================================================== */
144
+ /**
145
+ * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
146
+ */
147
+ abbr[title] {
148
+ border-bottom: 1px dotted;
149
+ }
150
+ /**
151
+ * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
152
+ */
153
+ b,
154
+ strong {
155
+ font-weight: bold;
156
+ }
157
+ /**
158
+ * Address styling not present in Safari and Chrome.
159
+ */
160
+ dfn {
161
+ font-style: italic;
162
+ }
163
+ /**
164
+ * Address variable `h1` font-size and margin within `section` and `article`
165
+ * contexts in Firefox 4+, Safari, and Chrome.
166
+ */
167
+ h1 {
168
+ font-size: 2em;
169
+ margin: 0.67em 0;
170
+ }
171
+ /**
172
+ * Address styling not present in IE 8/9.
173
+ */
174
+ mark {
175
+ background: #ff0;
176
+ color: #000;
177
+ }
178
+ /**
179
+ * Address inconsistent and variable font size in all browsers.
180
+ */
181
+ small {
182
+ font-size: 80%;
183
+ }
184
+ /**
185
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
186
+ */
187
+ sub,
188
+ sup {
189
+ font-size: 75%;
190
+ line-height: 0;
191
+ position: relative;
192
+ vertical-align: baseline;
193
+ }
194
+ sup {
195
+ top: -0.5em;
196
+ }
197
+ sub {
198
+ bottom: -0.25em;
199
+ }
200
+
201
+ /* Embedded content
202
+ ========================================================================== */
203
+ /**
204
+ * Remove border when inside `a` element in IE 8/9/10.
205
+ */
206
+ img {
207
+ border: 0;
208
+ }
209
+ /**
210
+ * Correct overflow not hidden in IE 9/10/11.
211
+ */
212
+ svg:not(:root) {
213
+ overflow: hidden;
214
+ }
215
+
216
+ /* Grouping content
217
+ ========================================================================== */
218
+ /**
219
+ * Address margin not present in IE 8/9 and Safari.
220
+ */
221
+ figure {
222
+ margin: 1em 40px;
223
+ }
224
+ /**
225
+ * Address differences between Firefox and other browsers.
226
+ */
227
+ hr {
228
+ box-sizing: content-box;
229
+ height: 0;
230
+ }
231
+ /**
232
+ * Contain overflow in all browsers.
233
+ */
234
+ pre {
235
+ overflow: auto;
236
+ }
237
+ /**
238
+ * Address odd `em`-unit font size rendering in all browsers.
239
+ */
240
+ code,
241
+ kbd,
242
+ pre,
243
+ samp {
244
+ font-family: monospace, monospace;
245
+ font-size: 1em;
246
+ }
247
+
248
+ /* Forms
249
+ ========================================================================== */
250
+ /**
251
+ * Known limitation: by default, Chrome and Safari on OS X allow very limited
252
+ * styling of `select`, unless a `border` property is set.
253
+ */
254
+ /**
255
+ * 1. Correct color not being inherited.
256
+ * Known issue: affects color of disabled elements.
257
+ * 2. Correct font properties not being inherited.
258
+ * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
259
+ */
260
+ button,
261
+ input,
262
+ optgroup,
263
+ select,
264
+ textarea {
265
+ color: inherit;
266
+
267
+ /* 1 */
268
+ font: inherit;
269
+
270
+ /* 2 */
271
+ margin: 0;
272
+
273
+ /* 3 */
274
+ }
275
+ /**
276
+ * Address `overflow` set to `hidden` in IE 8/9/10/11.
277
+ */
278
+ button {
279
+ overflow: visible;
280
+ }
281
+ /**
282
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
283
+ * All other form control elements do not inherit `text-transform` values.
284
+ * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
285
+ * Correct `select` style inheritance in Firefox.
286
+ */
287
+ button,
288
+ select {
289
+ text-transform: none;
290
+ }
291
+ /**
292
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
293
+ * and `video` controls.
294
+ * 2. Correct inability to style clickable `input` types in iOS.
295
+ * 3. Improve usability and consistency of cursor style between image-type
296
+ * `input` and others.
297
+ */
298
+ button,
299
+ html input[type="button"],
300
+ input[type="reset"],
301
+ input[type="submit"] {
302
+ -webkit-appearance: button;
303
+
304
+ /* 2 */
305
+ cursor: pointer;
306
+
307
+ /* 3 */
308
+ }
309
+ /**
310
+ * Re-set default cursor for disabled elements.
311
+ */
312
+ button[disabled],
313
+ html input[disabled] {
314
+ cursor: default;
315
+ }
316
+ /**
317
+ * Remove inner padding and border in Firefox 4+.
318
+ */
319
+ button::-moz-focus-inner,
320
+ input::-moz-focus-inner {
321
+ border: 0;
322
+ padding: 0;
323
+ }
324
+ /**
325
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
326
+ * the UA stylesheet.
327
+ */
328
+ input {
329
+ line-height: normal;
330
+ }
331
+ /**
332
+ * It's recommended that you don't attempt to style these elements.
333
+ * Firefox's implementation doesn't respect box-sizing, padding, or width.
334
+ *
335
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
336
+ * 2. Remove excess padding in IE 8/9/10.
337
+ */
338
+ input[type="checkbox"],
339
+ input[type="radio"] {
340
+ box-sizing: border-box;
341
+
342
+ /* 1 */
343
+ padding: 0;
344
+
345
+ /* 2 */
346
+ }
347
+ /**
348
+ * Fix the cursor style for Chrome's increment/decrement buttons. For certain
349
+ * `font-size` values of the `input`, it causes the cursor style of the
350
+ * decrement button to change from `default` to `text`.
351
+ */
352
+ input[type="number"]::-webkit-inner-spin-button,
353
+ input[type="number"]::-webkit-outer-spin-button {
354
+ height: auto;
355
+ }
356
+ /**
357
+ * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
358
+ * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
359
+ * (include `-moz` to future-proof).
360
+ */
361
+ input[type="search"] {
362
+ -webkit-appearance: textfield;
363
+
364
+ /* 1 */
365
+
366
+ /* 2 */
367
+ box-sizing: content-box;
368
+ }
369
+ /**
370
+ * Remove inner padding and search cancel button in Safari and Chrome on OS X.
371
+ * Safari (but not Chrome) clips the cancel button when the search input has
372
+ * padding (and `textfield` appearance).
373
+ */
374
+ input[type="search"]::-webkit-search-cancel-button,
375
+ input[type="search"]::-webkit-search-decoration {
376
+ -webkit-appearance: none;
377
+ }
378
+ /**
379
+ * Define consistent border, margin, and padding.
380
+ */
381
+ fieldset {
382
+ border: 1px solid #c0c0c0;
383
+ margin: 0 2px;
384
+ padding: 0.35em 0.625em 0.75em;
385
+ }
386
+ /**
387
+ * 1. Correct `color` not being inherited in IE 8/9/10/11.
388
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
389
+ */
390
+ legend {
391
+ border: 0;
392
+
393
+ /* 1 */
394
+ padding: 0;
395
+
396
+ /* 2 */
397
+ }
398
+ /**
399
+ * Remove default vertical scrollbar in IE 8/9/10/11.
400
+ */
401
+ textarea {
402
+ overflow: auto;
403
+ }
404
+ /**
405
+ * Don't inherit the `font-weight` (applied by a rule above).
406
+ * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
407
+ */
408
+ optgroup {
409
+ font-weight: bold;
410
+ }
411
+
412
+ /* Tables
413
+ ========================================================================== */
414
+ /**
415
+ * Remove most spacing between table cells.
416
+ */
417
+ table {
418
+ border-collapse: collapse;
419
+ border-spacing: 0;
420
+ }
421
+ td,
422
+ th {
423
+ padding: 0;
424
+ }
425
+
426
+
427
+ /*******************************
428
+ Site Overrides
429
+ *******************************/
430
+
@@ -0,0 +1,128 @@
1
+ /*
2
+ * # Semantic UI
3
+ * https://github.com/Semantic-Org/Semantic-UI
4
+ * http://www.semantic-ui.com/
5
+ *
6
+ * Copyright 2014 Contributors
7
+ * Released under the MIT license
8
+ * http://opensource.org/licenses/MIT
9
+ *
10
+ */
11
+ @import 'https://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic&subset=latin';
12
+
13
+
14
+
15
+ /*******************************
16
+ Page
17
+ *******************************/
18
+
19
+ html,
20
+ body {
21
+ height: 100%;
22
+ }
23
+ html {
24
+ font-size: 14px;
25
+ }
26
+ body {
27
+ margin: 0px;
28
+ padding: 0px;
29
+ min-width: 278px;
30
+ background: #f7f7f7;
31
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
32
+ font-size: 14px;
33
+ line-height: 1.33;
34
+ color: rgba(0, 0, 0, 0.8);
35
+ font-smoothing: antialiased;
36
+ }
37
+
38
+
39
+ /*******************************
40
+ Headers
41
+ *******************************/
42
+
43
+ h1,
44
+ h2,
45
+ h3,
46
+ h4,
47
+ h5 {
48
+ font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
49
+ line-height: 1.33em;
50
+ margin: -webkit-calc(2rem - 0.165em ) 0em 1rem;
51
+ margin: calc(2rem - 0.165em ) 0em 1rem;
52
+ font-weight: bold;
53
+ padding: 0em;
54
+ }
55
+ h1 {
56
+ min-height: 1rem;
57
+ font-size: 2rem;
58
+ }
59
+ h2 {
60
+ font-size: 1.714rem;
61
+ }
62
+ h3 {
63
+ font-size: 1.28rem;
64
+ }
65
+ h4 {
66
+ font-size: 1.071rem;
67
+ }
68
+ h5 {
69
+ font-size: 1rem;
70
+ }
71
+
72
+
73
+ /*******************************
74
+ Text
75
+ *******************************/
76
+
77
+ p {
78
+ margin: 0em 0em 1em;
79
+ line-height: 1.33;
80
+ }
81
+ p:first-child {
82
+ margin-top: 0em;
83
+ }
84
+ p:last-child {
85
+ margin-bottom: 0em;
86
+ }
87
+
88
+ /*-------------------
89
+ Links
90
+ --------------------*/
91
+
92
+ a {
93
+ color: #009fda;
94
+ text-decoration: none;
95
+ }
96
+ a:hover {
97
+ color: #00b2f3;
98
+ }
99
+
100
+
101
+ /*******************************
102
+ Highlighting
103
+ *******************************/
104
+
105
+ ::-webkit-selection {
106
+ background-color: rgba(255, 255, 160, 0.4);
107
+ color: rgba(0, 0, 0, 0.8);
108
+ }
109
+ ::-moz-selection {
110
+ background-color: rgba(255, 255, 160, 0.4);
111
+ color: rgba(0, 0, 0, 0.8);
112
+ }
113
+ ::selection {
114
+ background-color: rgba(255, 255, 160, 0.4);
115
+ color: rgba(0, 0, 0, 0.8);
116
+ }
117
+
118
+
119
+ /*******************************
120
+ Global Overrides
121
+ *******************************/
122
+
123
+
124
+
125
+ /*******************************
126
+ Site Overrides
127
+ *******************************/
128
+