vue_crud 0.1.9.5 → 0.1.9.6

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