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