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,148 @@
1
+ /*!
2
+ * # Semantic UI 2.2.4 - Container
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
+ Container
14
+ *******************************/
15
+
16
+
17
+ /* All Sizes */
18
+ .ui.container {
19
+ display: block;
20
+ max-width: 100% !important;
21
+ }
22
+
23
+ /* Mobile */
24
+ @media only screen and (max-width: 767px) {
25
+ .ui.container {
26
+ width: auto !important;
27
+ margin-left: 1em !important;
28
+ margin-right: 1em !important;
29
+ }
30
+ .ui.grid.container {
31
+ width: auto !important;
32
+ }
33
+ .ui.relaxed.grid.container {
34
+ width: auto !important;
35
+ }
36
+ .ui.very.relaxed.grid.container {
37
+ width: auto !important;
38
+ }
39
+ }
40
+
41
+ /* Tablet */
42
+ @media only screen and (min-width: 768px) and (max-width: 991px) {
43
+ .ui.container {
44
+ width: 723px;
45
+ margin-left: auto !important;
46
+ margin-right: auto !important;
47
+ }
48
+ .ui.grid.container {
49
+ width: calc( 723px + 2rem ) !important;
50
+ }
51
+ .ui.relaxed.grid.container {
52
+ width: calc( 723px + 3rem ) !important;
53
+ }
54
+ .ui.very.relaxed.grid.container {
55
+ width: calc( 723px + 5rem ) !important;
56
+ }
57
+ }
58
+
59
+ /* Small Monitor */
60
+ @media only screen and (min-width: 992px) and (max-width: 1199px) {
61
+ .ui.container {
62
+ width: 933px;
63
+ margin-left: auto !important;
64
+ margin-right: auto !important;
65
+ }
66
+ .ui.grid.container {
67
+ width: calc( 933px + 2rem ) !important;
68
+ }
69
+ .ui.relaxed.grid.container {
70
+ width: calc( 933px + 3rem ) !important;
71
+ }
72
+ .ui.very.relaxed.grid.container {
73
+ width: calc( 933px + 5rem ) !important;
74
+ }
75
+ }
76
+
77
+ /* Large Monitor */
78
+ @media only screen and (min-width: 1200px) {
79
+ .ui.container {
80
+ width: 1127px;
81
+ margin-left: auto !important;
82
+ margin-right: auto !important;
83
+ }
84
+ .ui.grid.container {
85
+ width: calc( 1127px + 2rem ) !important;
86
+ }
87
+ .ui.relaxed.grid.container {
88
+ width: calc( 1127px + 3rem ) !important;
89
+ }
90
+ .ui.very.relaxed.grid.container {
91
+ width: calc( 1127px + 5rem ) !important;
92
+ }
93
+ }
94
+
95
+
96
+ /*******************************
97
+ Types
98
+ *******************************/
99
+
100
+
101
+ /* Text Container */
102
+ .ui.text.container {
103
+ font-family: $font-family;
104
+ max-width: 700px !important;
105
+ line-height: 1.5;
106
+ }
107
+ .ui.text.container {
108
+ font-size: 1.14285714rem;
109
+ }
110
+
111
+ /* Fluid */
112
+ .ui.fluid.container {
113
+ width: 100%;
114
+ }
115
+
116
+
117
+ /*******************************
118
+ Variations
119
+ *******************************/
120
+
121
+ .ui[class*="left aligned"].container {
122
+ text-align: left;
123
+ }
124
+ .ui[class*="center aligned"].container {
125
+ text-align: center;
126
+ }
127
+ .ui[class*="right aligned"].container {
128
+ text-align: right;
129
+ }
130
+ .ui.justified.container {
131
+ text-align: justify;
132
+ -webkit-hyphens: auto;
133
+ -moz-hyphens: auto;
134
+ -ms-hyphens: auto;
135
+ hyphens: auto;
136
+ }
137
+
138
+
139
+ /*******************************
140
+ Theme Overrides
141
+ *******************************/
142
+
143
+
144
+
145
+ /*******************************
146
+ Site Overrides
147
+ *******************************/
148
+
@@ -0,0 +1,262 @@
1
+ /*!
2
+ * # Semantic UI 2.2.4 - Divider
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
+ Divider
14
+ *******************************/
15
+
16
+ .ui.divider {
17
+ margin: 1rem 0rem;
18
+ line-height: 1;
19
+ height: 0em;
20
+ font-weight: bold;
21
+ text-transform: uppercase;
22
+ letter-spacing: 0.05em;
23
+ color: rgba(0, 0, 0, 0.85);
24
+ -webkit-user-select: none;
25
+ -moz-user-select: none;
26
+ -ms-user-select: none;
27
+ user-select: none;
28
+ -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
29
+ }
30
+
31
+ /*--------------
32
+ Basic
33
+ ---------------*/
34
+
35
+ .ui.divider:not(.vertical):not(.horizontal) {
36
+ border-top: 1px solid rgba(34, 36, 38, 0.15);
37
+ border-bottom: 1px solid rgba(255, 255, 255, 0.1);
38
+ }
39
+
40
+ /*--------------
41
+ Coupling
42
+ ---------------*/
43
+
44
+
45
+ /* Allow divider between each column row */
46
+ .ui.grid > .column + .divider,
47
+ .ui.grid > .row > .column + .divider {
48
+ left: auto;
49
+ }
50
+
51
+ /*--------------
52
+ Horizontal
53
+ ---------------*/
54
+
55
+ .ui.horizontal.divider {
56
+ display: table;
57
+ white-space: nowrap;
58
+ height: auto;
59
+ margin: '';
60
+ line-height: 1;
61
+ text-align: center;
62
+ }
63
+ .ui.horizontal.divider:before,
64
+ .ui.horizontal.divider:after {
65
+ content: '';
66
+ display: table-cell;
67
+ position: relative;
68
+ top: 50%;
69
+ width: 50%;
70
+ background-repeat: no-repeat;
71
+ }
72
+ .ui.horizontal.divider:before {
73
+ background-position: right 1em top 50%;
74
+ }
75
+ .ui.horizontal.divider:after {
76
+ background-position: left 1em top 50%;
77
+ }
78
+
79
+ /*--------------
80
+ Vertical
81
+ ---------------*/
82
+
83
+ .ui.vertical.divider {
84
+ position: absolute;
85
+ z-index: 2;
86
+ top: 50%;
87
+ left: 50%;
88
+ margin: 0rem;
89
+ padding: 0em;
90
+ width: auto;
91
+ height: 50%;
92
+ line-height: 0em;
93
+ text-align: center;
94
+ -webkit-transform: translateX(-50%);
95
+ -ms-transform: translateX(-50%);
96
+ transform: translateX(-50%);
97
+ }
98
+ .ui.vertical.divider:before,
99
+ .ui.vertical.divider:after {
100
+ position: absolute;
101
+ left: 50%;
102
+ content: '';
103
+ z-index: 3;
104
+ border-left: 1px solid rgba(34, 36, 38, 0.15);
105
+ border-right: 1px solid rgba(255, 255, 255, 0.1);
106
+ width: 0%;
107
+ height: calc(100% - 1rem );
108
+ }
109
+ .ui.vertical.divider:before {
110
+ top: -100%;
111
+ }
112
+ .ui.vertical.divider:after {
113
+ top: auto;
114
+ bottom: 0px;
115
+ }
116
+
117
+ /* Inside grid */
118
+ @media only screen and (max-width: 767px) {
119
+ .ui.stackable.grid .ui.vertical.divider,
120
+ .ui.grid .stackable.row .ui.vertical.divider {
121
+ display: table;
122
+ white-space: nowrap;
123
+ height: auto;
124
+ margin: '';
125
+ overflow: hidden;
126
+ line-height: 1;
127
+ text-align: center;
128
+ position: static;
129
+ top: 0;
130
+ left: 0;
131
+ -webkit-transform: none;
132
+ -ms-transform: none;
133
+ transform: none;
134
+ }
135
+ .ui.stackable.grid .ui.vertical.divider:before,
136
+ .ui.grid .stackable.row .ui.vertical.divider:before,
137
+ .ui.stackable.grid .ui.vertical.divider:after,
138
+ .ui.grid .stackable.row .ui.vertical.divider:after {
139
+ position: static;
140
+ left: 0;
141
+ border-left: none;
142
+ border-right: none;
143
+ content: '';
144
+ display: table-cell;
145
+ position: relative;
146
+ top: 50%;
147
+ width: 50%;
148
+ background-repeat: no-repeat;
149
+ }
150
+ .ui.stackable.grid .ui.vertical.divider:before,
151
+ .ui.grid .stackable.row .ui.vertical.divider:before {
152
+ background-position: right 1em top 50%;
153
+ }
154
+ .ui.stackable.grid .ui.vertical.divider:after,
155
+ .ui.grid .stackable.row .ui.vertical.divider:after {
156
+ background-position: left 1em top 50%;
157
+ }
158
+ }
159
+
160
+ /*--------------
161
+ Icon
162
+ ---------------*/
163
+
164
+ .ui.divider > .icon {
165
+ margin: 0rem;
166
+ font-size: 1rem;
167
+ height: 1em;
168
+ vertical-align: middle;
169
+ }
170
+
171
+
172
+ /*******************************
173
+ Variations
174
+ *******************************/
175
+
176
+
177
+ /*--------------
178
+ Hidden
179
+ ---------------*/
180
+
181
+ .ui.hidden.divider {
182
+ border-color: transparent !important;
183
+ }
184
+ .ui.hidden.divider:before,
185
+ .ui.hidden.divider:after {
186
+ display: none;
187
+ }
188
+
189
+ /*--------------
190
+ Inverted
191
+ ---------------*/
192
+
193
+ .ui.divider.inverted,
194
+ .ui.vertical.inverted.divider,
195
+ .ui.horizontal.inverted.divider {
196
+ color: #FFFFFF;
197
+ }
198
+ .ui.divider.inverted,
199
+ .ui.divider.inverted:after,
200
+ .ui.divider.inverted:before {
201
+ border-top-color: rgba(34, 36, 38, 0.15) !important;
202
+ border-left-color: rgba(34, 36, 38, 0.15) !important;
203
+ border-bottom-color: rgba(255, 255, 255, 0.15) !important;
204
+ border-right-color: rgba(255, 255, 255, 0.15) !important;
205
+ }
206
+
207
+ /*--------------
208
+ Fitted
209
+ ---------------*/
210
+
211
+ .ui.fitted.divider {
212
+ margin: 0em;
213
+ }
214
+
215
+ /*--------------
216
+ Clearing
217
+ ---------------*/
218
+
219
+ .ui.clearing.divider {
220
+ clear: both;
221
+ }
222
+
223
+ /*--------------
224
+ Section
225
+ ---------------*/
226
+
227
+ .ui.section.divider {
228
+ margin-top: 2rem;
229
+ margin-bottom: 2rem;
230
+ }
231
+
232
+ /*--------------
233
+ Sizes
234
+ ---------------*/
235
+
236
+ .ui.divider {
237
+ font-size: 1rem;
238
+ }
239
+
240
+
241
+ /*******************************
242
+ Theme Overrides
243
+ *******************************/
244
+
245
+ .ui.horizontal.divider:before,
246
+ .ui.horizontal.divider:after {
247
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC');
248
+ }
249
+ @media only screen and (max-width: 767px) {
250
+ .ui.stackable.grid .ui.vertical.divider:before,
251
+ .ui.grid .stackable.row .ui.vertical.divider:before,
252
+ .ui.stackable.grid .ui.vertical.divider:after,
253
+ .ui.grid .stackable.row .ui.vertical.divider:after {
254
+ background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABaAAAAACCAYAAACuTHuKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDE0IDc5LjE1MTQ4MSwgMjAxMy8wMy8xMy0xMjowOToxNSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo1OThBRDY4OUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo1OThBRDY4QUNDMTYxMUU0OUE3NUVGOEJDMzMzMjE2NyI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjU5OEFENjg3Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjU5OEFENjg4Q0MxNjExRTQ5QTc1RUY4QkMzMzMyMTY3Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+VU513gAAADVJREFUeNrs0DENACAQBDBIWLGBJQby/mUcJn5sJXQmOQMAAAAAAJqt+2prAAAAAACg2xdgANk6BEVuJgyMAAAAAElFTkSuQmCC');
255
+ }
256
+ }
257
+
258
+
259
+ /*******************************
260
+ Site Overrides
261
+ *******************************/
262
+
@@ -0,0 +1,1031 @@
1
+ /*!
2
+ * # Semantic UI 2.2.4 - Flag
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
+ Flag
14
+ *******************************/
15
+
16
+ i.flag:not(.icon) {
17
+ display: inline-block;
18
+ width: 16px;
19
+ height: 11px;
20
+ line-height: 11px;
21
+ vertical-align: baseline;
22
+ margin: 0em 0.5em 0em 0em;
23
+ text-decoration: inherit;
24
+ speak: none;
25
+ font-smoothing: antialiased;
26
+ -webkit-backface-visibility: hidden;
27
+ backface-visibility: hidden;
28
+ }
29
+
30
+ /* Sprite */
31
+ i.flag:not(.icon):before {
32
+ display: inline-block;
33
+ content: '';
34
+ background: image-url("semantic-ui/flags.png") no-repeat -108px -1976px;
35
+ width: 16px;
36
+ height: 11px;
37
+ }
38
+
39
+ /* Flag Sprite Based On http://www.famfamfam.com/lab/icons/flags/ */
40
+
41
+
42
+ /*******************************
43
+ Theme Overrides
44
+ *******************************/
45
+
46
+ i.flag.ad:before,
47
+ i.flag.andorra:before {
48
+ background-position: 0px 0px;
49
+ }
50
+ i.flag.ae:before,
51
+ i.flag.united.arab.emirates:before,
52
+ i.flag.uae:before {
53
+ background-position: 0px -26px;
54
+ }
55
+ i.flag.af:before,
56
+ i.flag.afghanistan:before {
57
+ background-position: 0px -52px;
58
+ }
59
+ i.flag.ag:before,
60
+ i.flag.antigua:before {
61
+ background-position: 0px -78px;
62
+ }
63
+ i.flag.ai:before,
64
+ i.flag.anguilla:before {
65
+ background-position: 0px -104px;
66
+ }
67
+ i.flag.al:before,
68
+ i.flag.albania:before {
69
+ background-position: 0px -130px;
70
+ }
71
+ i.flag.am:before,
72
+ i.flag.armenia:before {
73
+ background-position: 0px -156px;
74
+ }
75
+ i.flag.an:before,
76
+ i.flag.netherlands.antilles:before {
77
+ background-position: 0px -182px;
78
+ }
79
+ i.flag.ao:before,
80
+ i.flag.angola:before {
81
+ background-position: 0px -208px;
82
+ }
83
+ i.flag.ar:before,
84
+ i.flag.argentina:before {
85
+ background-position: 0px -234px;
86
+ }
87
+ i.flag.as:before,
88
+ i.flag.american.samoa:before {
89
+ background-position: 0px -260px;
90
+ }
91
+ i.flag.at:before,
92
+ i.flag.austria:before {
93
+ background-position: 0px -286px;
94
+ }
95
+ i.flag.au:before,
96
+ i.flag.australia:before {
97
+ background-position: 0px -312px;
98
+ }
99
+ i.flag.aw:before,
100
+ i.flag.aruba:before {
101
+ background-position: 0px -338px;
102
+ }
103
+ i.flag.ax:before,
104
+ i.flag.aland.islands:before {
105
+ background-position: 0px -364px;
106
+ }
107
+ i.flag.az:before,
108
+ i.flag.azerbaijan:before {
109
+ background-position: 0px -390px;
110
+ }
111
+ i.flag.ba:before,
112
+ i.flag.bosnia:before {
113
+ background-position: 0px -416px;
114
+ }
115
+ i.flag.bb:before,
116
+ i.flag.barbados:before {
117
+ background-position: 0px -442px;
118
+ }
119
+ i.flag.bd:before,
120
+ i.flag.bangladesh:before {
121
+ background-position: 0px -468px;
122
+ }
123
+ i.flag.be:before,
124
+ i.flag.belgium:before {
125
+ background-position: 0px -494px;
126
+ }
127
+ i.flag.bf:before,
128
+ i.flag.burkina.faso:before {
129
+ background-position: 0px -520px;
130
+ }
131
+ i.flag.bg:before,
132
+ i.flag.bulgaria:before {
133
+ background-position: 0px -546px;
134
+ }
135
+ i.flag.bh:before,
136
+ i.flag.bahrain:before {
137
+ background-position: 0px -572px;
138
+ }
139
+ i.flag.bi:before,
140
+ i.flag.burundi:before {
141
+ background-position: 0px -598px;
142
+ }
143
+ i.flag.bj:before,
144
+ i.flag.benin:before {
145
+ background-position: 0px -624px;
146
+ }
147
+ i.flag.bm:before,
148
+ i.flag.bermuda:before {
149
+ background-position: 0px -650px;
150
+ }
151
+ i.flag.bn:before,
152
+ i.flag.brunei:before {
153
+ background-position: 0px -676px;
154
+ }
155
+ i.flag.bo:before,
156
+ i.flag.bolivia:before {
157
+ background-position: 0px -702px;
158
+ }
159
+ i.flag.br:before,
160
+ i.flag.brazil:before {
161
+ background-position: 0px -728px;
162
+ }
163
+ i.flag.bs:before,
164
+ i.flag.bahamas:before {
165
+ background-position: 0px -754px;
166
+ }
167
+ i.flag.bt:before,
168
+ i.flag.bhutan:before {
169
+ background-position: 0px -780px;
170
+ }
171
+ i.flag.bv:before,
172
+ i.flag.bouvet.island:before {
173
+ background-position: 0px -806px;
174
+ }
175
+ i.flag.bw:before,
176
+ i.flag.botswana:before {
177
+ background-position: 0px -832px;
178
+ }
179
+ i.flag.by:before,
180
+ i.flag.belarus:before {
181
+ background-position: 0px -858px;
182
+ }
183
+ i.flag.bz:before,
184
+ i.flag.belize:before {
185
+ background-position: 0px -884px;
186
+ }
187
+ i.flag.ca:before,
188
+ i.flag.canada:before {
189
+ background-position: 0px -910px;
190
+ }
191
+ i.flag.cc:before,
192
+ i.flag.cocos.islands:before {
193
+ background-position: 0px -962px;
194
+ }
195
+ i.flag.cd:before,
196
+ i.flag.congo:before {
197
+ background-position: 0px -988px;
198
+ }
199
+ i.flag.cf:before,
200
+ i.flag.central.african.republic:before {
201
+ background-position: 0px -1014px;
202
+ }
203
+ i.flag.cg:before,
204
+ i.flag.congo.brazzaville:before {
205
+ background-position: 0px -1040px;
206
+ }
207
+ i.flag.ch:before,
208
+ i.flag.switzerland:before {
209
+ background-position: 0px -1066px;
210
+ }
211
+ i.flag.ci:before,
212
+ i.flag.cote.divoire:before {
213
+ background-position: 0px -1092px;
214
+ }
215
+ i.flag.ck:before,
216
+ i.flag.cook.islands:before {
217
+ background-position: 0px -1118px;
218
+ }
219
+ i.flag.cl:before,
220
+ i.flag.chile:before {
221
+ background-position: 0px -1144px;
222
+ }
223
+ i.flag.cm:before,
224
+ i.flag.cameroon:before {
225
+ background-position: 0px -1170px;
226
+ }
227
+ i.flag.cn:before,
228
+ i.flag.china:before {
229
+ background-position: 0px -1196px;
230
+ }
231
+ i.flag.co:before,
232
+ i.flag.colombia:before {
233
+ background-position: 0px -1222px;
234
+ }
235
+ i.flag.cr:before,
236
+ i.flag.costa.rica:before {
237
+ background-position: 0px -1248px;
238
+ }
239
+ i.flag.cs:before,
240
+ i.flag.serbia:before {
241
+ background-position: 0px -1274px;
242
+ }
243
+ i.flag.cu:before,
244
+ i.flag.cuba:before {
245
+ background-position: 0px -1300px;
246
+ }
247
+ i.flag.cv:before,
248
+ i.flag.cape.verde:before {
249
+ background-position: 0px -1326px;
250
+ }
251
+ i.flag.cx:before,
252
+ i.flag.christmas.island:before {
253
+ background-position: 0px -1352px;
254
+ }
255
+ i.flag.cy:before,
256
+ i.flag.cyprus:before {
257
+ background-position: 0px -1378px;
258
+ }
259
+ i.flag.cz:before,
260
+ i.flag.czech.republic:before {
261
+ background-position: 0px -1404px;
262
+ }
263
+ i.flag.de:before,
264
+ i.flag.germany:before {
265
+ background-position: 0px -1430px;
266
+ }
267
+ i.flag.dj:before,
268
+ i.flag.djibouti:before {
269
+ background-position: 0px -1456px;
270
+ }
271
+ i.flag.dk:before,
272
+ i.flag.denmark:before {
273
+ background-position: 0px -1482px;
274
+ }
275
+ i.flag.dm:before,
276
+ i.flag.dominica:before {
277
+ background-position: 0px -1508px;
278
+ }
279
+ i.flag.do:before,
280
+ i.flag.dominican.republic:before {
281
+ background-position: 0px -1534px;
282
+ }
283
+ i.flag.dz:before,
284
+ i.flag.algeria:before {
285
+ background-position: 0px -1560px;
286
+ }
287
+ i.flag.ec:before,
288
+ i.flag.ecuador:before {
289
+ background-position: 0px -1586px;
290
+ }
291
+ i.flag.ee:before,
292
+ i.flag.estonia:before {
293
+ background-position: 0px -1612px;
294
+ }
295
+ i.flag.eg:before,
296
+ i.flag.egypt:before {
297
+ background-position: 0px -1638px;
298
+ }
299
+ i.flag.eh:before,
300
+ i.flag.western.sahara:before {
301
+ background-position: 0px -1664px;
302
+ }
303
+ i.flag.er:before,
304
+ i.flag.eritrea:before {
305
+ background-position: 0px -1716px;
306
+ }
307
+ i.flag.es:before,
308
+ i.flag.spain:before {
309
+ background-position: 0px -1742px;
310
+ }
311
+ i.flag.et:before,
312
+ i.flag.ethiopia:before {
313
+ background-position: 0px -1768px;
314
+ }
315
+ i.flag.eu:before,
316
+ i.flag.european.union:before {
317
+ background-position: 0px -1794px;
318
+ }
319
+ i.flag.fi:before,
320
+ i.flag.finland:before {
321
+ background-position: 0px -1846px;
322
+ }
323
+ i.flag.fj:before,
324
+ i.flag.fiji:before {
325
+ background-position: 0px -1872px;
326
+ }
327
+ i.flag.fk:before,
328
+ i.flag.falkland.islands:before {
329
+ background-position: 0px -1898px;
330
+ }
331
+ i.flag.fm:before,
332
+ i.flag.micronesia:before {
333
+ background-position: 0px -1924px;
334
+ }
335
+ i.flag.fo:before,
336
+ i.flag.faroe.islands:before {
337
+ background-position: 0px -1950px;
338
+ }
339
+ i.flag.fr:before,
340
+ i.flag.france:before {
341
+ background-position: 0px -1976px;
342
+ }
343
+ i.flag.ga:before,
344
+ i.flag.gabon:before {
345
+ background-position: -36px 0px;
346
+ }
347
+ i.flag.gb:before,
348
+ i.flag.united.kingdom:before {
349
+ background-position: -36px -26px;
350
+ }
351
+ i.flag.gd:before,
352
+ i.flag.grenada:before {
353
+ background-position: -36px -52px;
354
+ }
355
+ i.flag.ge:before,
356
+ i.flag.georgia:before {
357
+ background-position: -36px -78px;
358
+ }
359
+ i.flag.gf:before,
360
+ i.flag.french.guiana:before {
361
+ background-position: -36px -104px;
362
+ }
363
+ i.flag.gh:before,
364
+ i.flag.ghana:before {
365
+ background-position: -36px -130px;
366
+ }
367
+ i.flag.gi:before,
368
+ i.flag.gibraltar:before {
369
+ background-position: -36px -156px;
370
+ }
371
+ i.flag.gl:before,
372
+ i.flag.greenland:before {
373
+ background-position: -36px -182px;
374
+ }
375
+ i.flag.gm:before,
376
+ i.flag.gambia:before {
377
+ background-position: -36px -208px;
378
+ }
379
+ i.flag.gn:before,
380
+ i.flag.guinea:before {
381
+ background-position: -36px -234px;
382
+ }
383
+ i.flag.gp:before,
384
+ i.flag.guadeloupe:before {
385
+ background-position: -36px -260px;
386
+ }
387
+ i.flag.gq:before,
388
+ i.flag.equatorial.guinea:before {
389
+ background-position: -36px -286px;
390
+ }
391
+ i.flag.gr:before,
392
+ i.flag.greece:before {
393
+ background-position: -36px -312px;
394
+ }
395
+ i.flag.gs:before,
396
+ i.flag.sandwich.islands:before {
397
+ background-position: -36px -338px;
398
+ }
399
+ i.flag.gt:before,
400
+ i.flag.guatemala:before {
401
+ background-position: -36px -364px;
402
+ }
403
+ i.flag.gu:before,
404
+ i.flag.guam:before {
405
+ background-position: -36px -390px;
406
+ }
407
+ i.flag.gw:before,
408
+ i.flag.guinea-bissau:before {
409
+ background-position: -36px -416px;
410
+ }
411
+ i.flag.gy:before,
412
+ i.flag.guyana:before {
413
+ background-position: -36px -442px;
414
+ }
415
+ i.flag.hk:before,
416
+ i.flag.hong.kong:before {
417
+ background-position: -36px -468px;
418
+ }
419
+ i.flag.hm:before,
420
+ i.flag.heard.island:before {
421
+ background-position: -36px -494px;
422
+ }
423
+ i.flag.hn:before,
424
+ i.flag.honduras:before {
425
+ background-position: -36px -520px;
426
+ }
427
+ i.flag.hr:before,
428
+ i.flag.croatia:before {
429
+ background-position: -36px -546px;
430
+ }
431
+ i.flag.ht:before,
432
+ i.flag.haiti:before {
433
+ background-position: -36px -572px;
434
+ }
435
+ i.flag.hu:before,
436
+ i.flag.hungary:before {
437
+ background-position: -36px -598px;
438
+ }
439
+ i.flag.id:before,
440
+ i.flag.indonesia:before {
441
+ background-position: -36px -624px;
442
+ }
443
+ i.flag.ie:before,
444
+ i.flag.ireland:before {
445
+ background-position: -36px -650px;
446
+ }
447
+ i.flag.il:before,
448
+ i.flag.israel:before {
449
+ background-position: -36px -676px;
450
+ }
451
+ i.flag.in:before,
452
+ i.flag.india:before {
453
+ background-position: -36px -702px;
454
+ }
455
+ i.flag.io:before,
456
+ i.flag.indian.ocean.territory:before {
457
+ background-position: -36px -728px;
458
+ }
459
+ i.flag.iq:before,
460
+ i.flag.iraq:before {
461
+ background-position: -36px -754px;
462
+ }
463
+ i.flag.ir:before,
464
+ i.flag.iran:before {
465
+ background-position: -36px -780px;
466
+ }
467
+ i.flag.is:before,
468
+ i.flag.iceland:before {
469
+ background-position: -36px -806px;
470
+ }
471
+ i.flag.it:before,
472
+ i.flag.italy:before {
473
+ background-position: -36px -832px;
474
+ }
475
+ i.flag.jm:before,
476
+ i.flag.jamaica:before {
477
+ background-position: -36px -858px;
478
+ }
479
+ i.flag.jo:before,
480
+ i.flag.jordan:before {
481
+ background-position: -36px -884px;
482
+ }
483
+ i.flag.jp:before,
484
+ i.flag.japan:before {
485
+ background-position: -36px -910px;
486
+ }
487
+ i.flag.ke:before,
488
+ i.flag.kenya:before {
489
+ background-position: -36px -936px;
490
+ }
491
+ i.flag.kg:before,
492
+ i.flag.kyrgyzstan:before {
493
+ background-position: -36px -962px;
494
+ }
495
+ i.flag.kh:before,
496
+ i.flag.cambodia:before {
497
+ background-position: -36px -988px;
498
+ }
499
+ i.flag.ki:before,
500
+ i.flag.kiribati:before {
501
+ background-position: -36px -1014px;
502
+ }
503
+ i.flag.km:before,
504
+ i.flag.comoros:before {
505
+ background-position: -36px -1040px;
506
+ }
507
+ i.flag.kn:before,
508
+ i.flag.saint.kitts.and.nevis:before {
509
+ background-position: -36px -1066px;
510
+ }
511
+ i.flag.kp:before,
512
+ i.flag.north.korea:before {
513
+ background-position: -36px -1092px;
514
+ }
515
+ i.flag.kr:before,
516
+ i.flag.south.korea:before {
517
+ background-position: -36px -1118px;
518
+ }
519
+ i.flag.kw:before,
520
+ i.flag.kuwait:before {
521
+ background-position: -36px -1144px;
522
+ }
523
+ i.flag.ky:before,
524
+ i.flag.cayman.islands:before {
525
+ background-position: -36px -1170px;
526
+ }
527
+ i.flag.kz:before,
528
+ i.flag.kazakhstan:before {
529
+ background-position: -36px -1196px;
530
+ }
531
+ i.flag.la:before,
532
+ i.flag.laos:before {
533
+ background-position: -36px -1222px;
534
+ }
535
+ i.flag.lb:before,
536
+ i.flag.lebanon:before {
537
+ background-position: -36px -1248px;
538
+ }
539
+ i.flag.lc:before,
540
+ i.flag.saint.lucia:before {
541
+ background-position: -36px -1274px;
542
+ }
543
+ i.flag.li:before,
544
+ i.flag.liechtenstein:before {
545
+ background-position: -36px -1300px;
546
+ }
547
+ i.flag.lk:before,
548
+ i.flag.sri.lanka:before {
549
+ background-position: -36px -1326px;
550
+ }
551
+ i.flag.lr:before,
552
+ i.flag.liberia:before {
553
+ background-position: -36px -1352px;
554
+ }
555
+ i.flag.ls:before,
556
+ i.flag.lesotho:before {
557
+ background-position: -36px -1378px;
558
+ }
559
+ i.flag.lt:before,
560
+ i.flag.lithuania:before {
561
+ background-position: -36px -1404px;
562
+ }
563
+ i.flag.lu:before,
564
+ i.flag.luxembourg:before {
565
+ background-position: -36px -1430px;
566
+ }
567
+ i.flag.lv:before,
568
+ i.flag.latvia:before {
569
+ background-position: -36px -1456px;
570
+ }
571
+ i.flag.ly:before,
572
+ i.flag.libya:before {
573
+ background-position: -36px -1482px;
574
+ }
575
+ i.flag.ma:before,
576
+ i.flag.morocco:before {
577
+ background-position: -36px -1508px;
578
+ }
579
+ i.flag.mc:before,
580
+ i.flag.monaco:before {
581
+ background-position: -36px -1534px;
582
+ }
583
+ i.flag.md:before,
584
+ i.flag.moldova:before {
585
+ background-position: -36px -1560px;
586
+ }
587
+ i.flag.me:before,
588
+ i.flag.montenegro:before {
589
+ background-position: -36px -1586px;
590
+ }
591
+ i.flag.mg:before,
592
+ i.flag.madagascar:before {
593
+ background-position: -36px -1613px;
594
+ }
595
+ i.flag.mh:before,
596
+ i.flag.marshall.islands:before {
597
+ background-position: -36px -1639px;
598
+ }
599
+ i.flag.mk:before,
600
+ i.flag.macedonia:before {
601
+ background-position: -36px -1665px;
602
+ }
603
+ i.flag.ml:before,
604
+ i.flag.mali:before {
605
+ background-position: -36px -1691px;
606
+ }
607
+ i.flag.mm:before,
608
+ i.flag.myanmar:before,
609
+ i.flag.burma:before {
610
+ background-position: -36px -1717px;
611
+ }
612
+ i.flag.mn:before,
613
+ i.flag.mongolia:before {
614
+ background-position: -36px -1743px;
615
+ }
616
+ i.flag.mo:before,
617
+ i.flag.macau:before {
618
+ background-position: -36px -1769px;
619
+ }
620
+ i.flag.mp:before,
621
+ i.flag.northern.mariana.islands:before {
622
+ background-position: -36px -1795px;
623
+ }
624
+ i.flag.mq:before,
625
+ i.flag.martinique:before {
626
+ background-position: -36px -1821px;
627
+ }
628
+ i.flag.mr:before,
629
+ i.flag.mauritania:before {
630
+ background-position: -36px -1847px;
631
+ }
632
+ i.flag.ms:before,
633
+ i.flag.montserrat:before {
634
+ background-position: -36px -1873px;
635
+ }
636
+ i.flag.mt:before,
637
+ i.flag.malta:before {
638
+ background-position: -36px -1899px;
639
+ }
640
+ i.flag.mu:before,
641
+ i.flag.mauritius:before {
642
+ background-position: -36px -1925px;
643
+ }
644
+ i.flag.mv:before,
645
+ i.flag.maldives:before {
646
+ background-position: -36px -1951px;
647
+ }
648
+ i.flag.mw:before,
649
+ i.flag.malawi:before {
650
+ background-position: -36px -1977px;
651
+ }
652
+ i.flag.mx:before,
653
+ i.flag.mexico:before {
654
+ background-position: -72px 0px;
655
+ }
656
+ i.flag.my:before,
657
+ i.flag.malaysia:before {
658
+ background-position: -72px -26px;
659
+ }
660
+ i.flag.mz:before,
661
+ i.flag.mozambique:before {
662
+ background-position: -72px -52px;
663
+ }
664
+ i.flag.na:before,
665
+ i.flag.namibia:before {
666
+ background-position: -72px -78px;
667
+ }
668
+ i.flag.nc:before,
669
+ i.flag.new.caledonia:before {
670
+ background-position: -72px -104px;
671
+ }
672
+ i.flag.ne:before,
673
+ i.flag.niger:before {
674
+ background-position: -72px -130px;
675
+ }
676
+ i.flag.nf:before,
677
+ i.flag.norfolk.island:before {
678
+ background-position: -72px -156px;
679
+ }
680
+ i.flag.ng:before,
681
+ i.flag.nigeria:before {
682
+ background-position: -72px -182px;
683
+ }
684
+ i.flag.ni:before,
685
+ i.flag.nicaragua:before {
686
+ background-position: -72px -208px;
687
+ }
688
+ i.flag.nl:before,
689
+ i.flag.netherlands:before {
690
+ background-position: -72px -234px;
691
+ }
692
+ i.flag.no:before,
693
+ i.flag.norway:before {
694
+ background-position: -72px -260px;
695
+ }
696
+ i.flag.np:before,
697
+ i.flag.nepal:before {
698
+ background-position: -72px -286px;
699
+ }
700
+ i.flag.nr:before,
701
+ i.flag.nauru:before {
702
+ background-position: -72px -312px;
703
+ }
704
+ i.flag.nu:before,
705
+ i.flag.niue:before {
706
+ background-position: -72px -338px;
707
+ }
708
+ i.flag.nz:before,
709
+ i.flag.new.zealand:before {
710
+ background-position: -72px -364px;
711
+ }
712
+ i.flag.om:before,
713
+ i.flag.oman:before {
714
+ background-position: -72px -390px;
715
+ }
716
+ i.flag.pa:before,
717
+ i.flag.panama:before {
718
+ background-position: -72px -416px;
719
+ }
720
+ i.flag.pe:before,
721
+ i.flag.peru:before {
722
+ background-position: -72px -442px;
723
+ }
724
+ i.flag.pf:before,
725
+ i.flag.french.polynesia:before {
726
+ background-position: -72px -468px;
727
+ }
728
+ i.flag.pg:before,
729
+ i.flag.new.guinea:before {
730
+ background-position: -72px -494px;
731
+ }
732
+ i.flag.ph:before,
733
+ i.flag.philippines:before {
734
+ background-position: -72px -520px;
735
+ }
736
+ i.flag.pk:before,
737
+ i.flag.pakistan:before {
738
+ background-position: -72px -546px;
739
+ }
740
+ i.flag.pl:before,
741
+ i.flag.poland:before {
742
+ background-position: -72px -572px;
743
+ }
744
+ i.flag.pm:before,
745
+ i.flag.saint.pierre:before {
746
+ background-position: -72px -598px;
747
+ }
748
+ i.flag.pn:before,
749
+ i.flag.pitcairn.islands:before {
750
+ background-position: -72px -624px;
751
+ }
752
+ i.flag.pr:before,
753
+ i.flag.puerto.rico:before {
754
+ background-position: -72px -650px;
755
+ }
756
+ i.flag.ps:before,
757
+ i.flag.palestine:before {
758
+ background-position: -72px -676px;
759
+ }
760
+ i.flag.pt:before,
761
+ i.flag.portugal:before {
762
+ background-position: -72px -702px;
763
+ }
764
+ i.flag.pw:before,
765
+ i.flag.palau:before {
766
+ background-position: -72px -728px;
767
+ }
768
+ i.flag.py:before,
769
+ i.flag.paraguay:before {
770
+ background-position: -72px -754px;
771
+ }
772
+ i.flag.qa:before,
773
+ i.flag.qatar:before {
774
+ background-position: -72px -780px;
775
+ }
776
+ i.flag.re:before,
777
+ i.flag.reunion:before {
778
+ background-position: -72px -806px;
779
+ }
780
+ i.flag.ro:before,
781
+ i.flag.romania:before {
782
+ background-position: -72px -832px;
783
+ }
784
+ i.flag.rs:before,
785
+ i.flag.serbia:before {
786
+ background-position: -72px -858px;
787
+ }
788
+ i.flag.ru:before,
789
+ i.flag.russia:before {
790
+ background-position: -72px -884px;
791
+ }
792
+ i.flag.rw:before,
793
+ i.flag.rwanda:before {
794
+ background-position: -72px -910px;
795
+ }
796
+ i.flag.sa:before,
797
+ i.flag.saudi.arabia:before {
798
+ background-position: -72px -936px;
799
+ }
800
+ i.flag.sb:before,
801
+ i.flag.solomon.islands:before {
802
+ background-position: -72px -962px;
803
+ }
804
+ i.flag.sc:before,
805
+ i.flag.seychelles:before {
806
+ background-position: -72px -988px;
807
+ }
808
+ i.flag.gb.sct:before,
809
+ i.flag.scotland:before {
810
+ background-position: -72px -1014px;
811
+ }
812
+ i.flag.sd:before,
813
+ i.flag.sudan:before {
814
+ background-position: -72px -1040px;
815
+ }
816
+ i.flag.se:before,
817
+ i.flag.sweden:before {
818
+ background-position: -72px -1066px;
819
+ }
820
+ i.flag.sg:before,
821
+ i.flag.singapore:before {
822
+ background-position: -72px -1092px;
823
+ }
824
+ i.flag.sh:before,
825
+ i.flag.saint.helena:before {
826
+ background-position: -72px -1118px;
827
+ }
828
+ i.flag.si:before,
829
+ i.flag.slovenia:before {
830
+ background-position: -72px -1144px;
831
+ }
832
+ i.flag.sj:before,
833
+ i.flag.svalbard:before,
834
+ i.flag.jan.mayen:before {
835
+ background-position: -72px -1170px;
836
+ }
837
+ i.flag.sk:before,
838
+ i.flag.slovakia:before {
839
+ background-position: -72px -1196px;
840
+ }
841
+ i.flag.sl:before,
842
+ i.flag.sierra.leone:before {
843
+ background-position: -72px -1222px;
844
+ }
845
+ i.flag.sm:before,
846
+ i.flag.san.marino:before {
847
+ background-position: -72px -1248px;
848
+ }
849
+ i.flag.sn:before,
850
+ i.flag.senegal:before {
851
+ background-position: -72px -1274px;
852
+ }
853
+ i.flag.so:before,
854
+ i.flag.somalia:before {
855
+ background-position: -72px -1300px;
856
+ }
857
+ i.flag.sr:before,
858
+ i.flag.suriname:before {
859
+ background-position: -72px -1326px;
860
+ }
861
+ i.flag.st:before,
862
+ i.flag.sao.tome:before {
863
+ background-position: -72px -1352px;
864
+ }
865
+ i.flag.sv:before,
866
+ i.flag.el.salvador:before {
867
+ background-position: -72px -1378px;
868
+ }
869
+ i.flag.sy:before,
870
+ i.flag.syria:before {
871
+ background-position: -72px -1404px;
872
+ }
873
+ i.flag.sz:before,
874
+ i.flag.swaziland:before {
875
+ background-position: -72px -1430px;
876
+ }
877
+ i.flag.tc:before,
878
+ i.flag.caicos.islands:before {
879
+ background-position: -72px -1456px;
880
+ }
881
+ i.flag.td:before,
882
+ i.flag.chad:before {
883
+ background-position: -72px -1482px;
884
+ }
885
+ i.flag.tf:before,
886
+ i.flag.french.territories:before {
887
+ background-position: -72px -1508px;
888
+ }
889
+ i.flag.tg:before,
890
+ i.flag.togo:before {
891
+ background-position: -72px -1534px;
892
+ }
893
+ i.flag.th:before,
894
+ i.flag.thailand:before {
895
+ background-position: -72px -1560px;
896
+ }
897
+ i.flag.tj:before,
898
+ i.flag.tajikistan:before {
899
+ background-position: -72px -1586px;
900
+ }
901
+ i.flag.tk:before,
902
+ i.flag.tokelau:before {
903
+ background-position: -72px -1612px;
904
+ }
905
+ i.flag.tl:before,
906
+ i.flag.timorleste:before {
907
+ background-position: -72px -1638px;
908
+ }
909
+ i.flag.tm:before,
910
+ i.flag.turkmenistan:before {
911
+ background-position: -72px -1664px;
912
+ }
913
+ i.flag.tn:before,
914
+ i.flag.tunisia:before {
915
+ background-position: -72px -1690px;
916
+ }
917
+ i.flag.to:before,
918
+ i.flag.tonga:before {
919
+ background-position: -72px -1716px;
920
+ }
921
+ i.flag.tr:before,
922
+ i.flag.turkey:before {
923
+ background-position: -72px -1742px;
924
+ }
925
+ i.flag.tt:before,
926
+ i.flag.trinidad:before {
927
+ background-position: -72px -1768px;
928
+ }
929
+ i.flag.tv:before,
930
+ i.flag.tuvalu:before {
931
+ background-position: -72px -1794px;
932
+ }
933
+ i.flag.tw:before,
934
+ i.flag.taiwan:before {
935
+ background-position: -72px -1820px;
936
+ }
937
+ i.flag.tz:before,
938
+ i.flag.tanzania:before {
939
+ background-position: -72px -1846px;
940
+ }
941
+ i.flag.ua:before,
942
+ i.flag.ukraine:before {
943
+ background-position: -72px -1872px;
944
+ }
945
+ i.flag.ug:before,
946
+ i.flag.uganda:before {
947
+ background-position: -72px -1898px;
948
+ }
949
+ i.flag.um:before,
950
+ i.flag.us.minor.islands:before {
951
+ background-position: -72px -1924px;
952
+ }
953
+ i.flag.us:before,
954
+ i.flag.america:before,
955
+ i.flag.united.states:before {
956
+ background-position: -72px -1950px;
957
+ }
958
+ i.flag.uy:before,
959
+ i.flag.uruguay:before {
960
+ background-position: -72px -1976px;
961
+ }
962
+ i.flag.uz:before,
963
+ i.flag.uzbekistan:before {
964
+ background-position: -108px 0px;
965
+ }
966
+ i.flag.va:before,
967
+ i.flag.vatican.city:before {
968
+ background-position: -108px -26px;
969
+ }
970
+ i.flag.vc:before,
971
+ i.flag.saint.vincent:before {
972
+ background-position: -108px -52px;
973
+ }
974
+ i.flag.ve:before,
975
+ i.flag.venezuela:before {
976
+ background-position: -108px -78px;
977
+ }
978
+ i.flag.vg:before,
979
+ i.flag.british.virgin.islands:before {
980
+ background-position: -108px -104px;
981
+ }
982
+ i.flag.vi:before,
983
+ i.flag.us.virgin.islands:before {
984
+ background-position: -108px -130px;
985
+ }
986
+ i.flag.vn:before,
987
+ i.flag.vietnam:before {
988
+ background-position: -108px -156px;
989
+ }
990
+ i.flag.vu:before,
991
+ i.flag.vanuatu:before {
992
+ background-position: -108px -182px;
993
+ }
994
+ i.flag.gb.wls:before,
995
+ i.flag.wales:before {
996
+ background-position: -108px -208px;
997
+ }
998
+ i.flag.wf:before,
999
+ i.flag.wallis.and.futuna:before {
1000
+ background-position: -108px -234px;
1001
+ }
1002
+ i.flag.ws:before,
1003
+ i.flag.samoa:before {
1004
+ background-position: -108px -260px;
1005
+ }
1006
+ i.flag.ye:before,
1007
+ i.flag.yemen:before {
1008
+ background-position: -108px -286px;
1009
+ }
1010
+ i.flag.yt:before,
1011
+ i.flag.mayotte:before {
1012
+ background-position: -108px -312px;
1013
+ }
1014
+ i.flag.za:before,
1015
+ i.flag.south.africa:before {
1016
+ background-position: -108px -338px;
1017
+ }
1018
+ i.flag.zm:before,
1019
+ i.flag.zambia:before {
1020
+ background-position: -108px -364px;
1021
+ }
1022
+ i.flag.zw:before,
1023
+ i.flag.zimbabwe:before {
1024
+ background-position: -108px -390px;
1025
+ }
1026
+
1027
+
1028
+ /*******************************
1029
+ Site Overrides
1030
+ *******************************/
1031
+