compass 0.12.alpha.1 → 0.12.alpha.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/README.markdown +3 -0
- data/VERSION.yml +1 -1
- data/features/command_line.feature +2 -2
- data/features/extensions.feature +5 -4
- data/features/step_definitions/extension_steps.rb +2 -0
- data/frameworks/compass/stylesheets/compass/css3/_shared.scss +6 -6
- data/lib/compass.rb +1 -1
- data/lib/compass/app_integration/rails/actionpack2x/urls.rb +2 -2
- data/lib/compass/app_integration/rails/configuration_defaults.rb +6 -0
- data/lib/compass/app_integration/rails/runtime.rb +2 -2
- data/lib/compass/sass_extensions/functions/image_size.rb +1 -1
- data/lib/compass/sass_extensions/sprites/layout_methods.rb +7 -1
- data/test/fixtures/stylesheets/blueprint/css/screen.css +1 -0
- data/test/fixtures/stylesheets/blueprint/css/single-imports/debug.css +1 -0
- data/test/fixtures/stylesheets/compass/css/border_radius.css +3 -3
- data/test/fixtures/stylesheets/compass/css/box.css +19 -0
- data/test/fixtures/stylesheets/compass/css/box_shadow.css +3 -0
- data/test/fixtures/stylesheets/compass/css/columns.css +8 -0
- data/test/fixtures/stylesheets/compass/css/grid_background.css +4 -0
- data/test/fixtures/stylesheets/compass/css/sprites.css +88 -88
- data/test/fixtures/stylesheets/compass/css/transform.css +64 -0
- data/test/fixtures/stylesheets/compass/css/transition.css +2 -1
- data/test/fixtures/stylesheets/compass/css/user-interface.css +1 -1
- data/test/fixtures/stylesheets/compass/images/flag-s4798b5a210.png +0 -0
- data/test/units/sass_extensions_test.rb +10 -0
- metadata +10 -10
- data/test/fixtures/stylesheets/compass/images/flag-s8f1e8fdb9b.png +0 -0
data/README.markdown
CHANGED
@@ -1,4 +1,7 @@
|
|
1
1
|
# Compass
|
2
|
+
|
3
|
+
Build Status: 
|
4
|
+
|
2
5
|
A [Sass][sass]-based CSS Meta-Framework that allows you to mix and match any of the following CSS frameworks:
|
3
6
|
|
4
7
|
- [Compass Core][compass_core_website] - [Wiki Documentation][compass_core_wiki]
|
data/VERSION.yml
CHANGED
@@ -200,7 +200,7 @@ Feature: Command Line
|
|
200
200
|
| tmp/box_shadow.css |
|
201
201
|
| tmp/columns.css |
|
202
202
|
| tmp/fonts.css |
|
203
|
-
| images/flag-
|
203
|
+
| images/flag-s4798b5a210.png |
|
204
204
|
And the following files are removed:
|
205
205
|
| .sass-cache/ |
|
206
206
|
| tmp/border_radius.css |
|
@@ -208,7 +208,7 @@ Feature: Command Line
|
|
208
208
|
| tmp/box_shadow.css |
|
209
209
|
| tmp/columns.css |
|
210
210
|
| tmp/fonts.css |
|
211
|
-
| images/flag-
|
211
|
+
| images/flag-s4798b5a210.png |
|
212
212
|
|
213
213
|
Scenario: Watching a project for changes
|
214
214
|
Given ruby supports fork
|
data/features/extensions.feature
CHANGED
@@ -16,16 +16,17 @@ Feature: Extensions
|
|
16
16
|
Scenario: Extensions directory for rails projects
|
17
17
|
Given ruby supports fork
|
18
18
|
And I'm in a newly created rails project: my_rails_project
|
19
|
-
And
|
20
|
-
And
|
19
|
+
And I run: compass init rails
|
20
|
+
And the "vendor/plugins/compass_extensions" directory exists
|
21
|
+
And and I have a fake extension at vendor/plugins/compass_extensions/testing
|
21
22
|
When I run: compass frameworks
|
22
23
|
Then the list of frameworks includes "testing"
|
23
24
|
|
24
25
|
@listframeworks
|
25
26
|
Scenario: Shared extensions directory
|
26
|
-
Given
|
27
|
-
And the "~/.compass/extensions" directory exists
|
27
|
+
Given the "~/.compass/extensions" directory exists
|
28
28
|
And and I have a fake extension at ~/.compass/extensions/testing
|
29
|
+
And I am using the existing project in test/fixtures/stylesheets/compass
|
29
30
|
When I run: compass frameworks
|
30
31
|
Then the list of frameworks includes "testing"
|
31
32
|
|
@@ -1,8 +1,10 @@
|
|
1
1
|
Given /^the "([^\"]*)" directory exists$/ do |directory|
|
2
|
+
directory.gsub!('~', ENV["HOME"]) if directory.include?('~/')
|
2
3
|
FileUtils.mkdir_p directory
|
3
4
|
end
|
4
5
|
|
5
6
|
Given /^and I have a fake extension at (.*)$/ do |directory|
|
7
|
+
directory.gsub!('~', ENV["HOME"]) if directory.include?('~/')
|
6
8
|
FileUtils.mkdir_p File.join(directory, 'stylesheets')
|
7
9
|
FileUtils.mkdir_p File.join(directory, 'templates/project')
|
8
10
|
open(File.join(directory, 'templates/project/manifest.rb'),"w") do |f|
|
@@ -5,11 +5,11 @@
|
|
5
5
|
// the implementations are identical except for the property
|
6
6
|
// prefix.
|
7
7
|
@mixin experimental($property, $value,
|
8
|
-
$webkit : $experimental-support-for-webkit,
|
9
|
-
$khtml : $experimental-support-for-khtml,
|
10
8
|
$moz : $experimental-support-for-mozilla,
|
11
|
-
$
|
9
|
+
$webkit : $experimental-support-for-webkit,
|
12
10
|
$o : $experimental-support-for-opera,
|
11
|
+
$ms : $experimental-support-for-microsoft,
|
12
|
+
$khtml : $experimental-support-for-khtml,
|
13
13
|
$official : true
|
14
14
|
) {
|
15
15
|
@if $webkit and $experimental-support-for-webkit { -webkit-#{$property} : $value; }
|
@@ -22,11 +22,11 @@
|
|
22
22
|
|
23
23
|
// Same as experimental(), but for cases when the property is the same and the value is vendorized
|
24
24
|
@mixin experimental-value($property, $value,
|
25
|
-
$webkit : $experimental-support-for-webkit,
|
26
|
-
$khtml : $experimental-support-for-khtml,
|
27
25
|
$moz : $experimental-support-for-mozilla,
|
28
|
-
$
|
26
|
+
$webkit : $experimental-support-for-webkit,
|
29
27
|
$o : $experimental-support-for-opera,
|
28
|
+
$ms : $experimental-support-for-microsoft,
|
29
|
+
$khtml : $experimental-support-for-khtml,
|
30
30
|
$official : true
|
31
31
|
) {
|
32
32
|
@if $webkit and $experimental-support-for-webkit { #{$property} : -webkit-#{$value}; }
|
data/lib/compass.rb
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
module Compass::SassExtensions::Functions::Urls
|
1
|
+
module Compass::SassExtensions::Functions::Urls::ImageUrl
|
2
2
|
def image_url_with_rails_integration(path, only_path = Sass::Script::Bool.new(false), cache_buster = Sass::Script::Bool.new(true))
|
3
3
|
if (@controller = Sass::Plugin.rails_controller) && @controller.respond_to?(:request) && @controller.request
|
4
4
|
begin
|
@@ -15,4 +15,4 @@ module Compass::SassExtensions::Functions::Urls
|
|
15
15
|
end
|
16
16
|
end
|
17
17
|
alias_method_chain :image_url, :rails_integration
|
18
|
-
end
|
18
|
+
end
|
@@ -79,6 +79,12 @@ module Compass
|
|
79
79
|
http_root_relative "images"
|
80
80
|
end
|
81
81
|
|
82
|
+
def default_http_generated_images_path
|
83
|
+
# Relies on the fact that this will be loaded after the "normal"
|
84
|
+
# defaults, so that method_missing finds http_root_relative
|
85
|
+
http_root_relative "images"
|
86
|
+
end
|
87
|
+
|
82
88
|
def default_http_javascripts_path
|
83
89
|
http_root_relative "javascripts"
|
84
90
|
end
|
@@ -11,7 +11,7 @@ unless defined?(Compass::RAILS_LOADED)
|
|
11
11
|
else
|
12
12
|
require 'compass/app_integration/rails/actionpack2x'
|
13
13
|
end
|
14
|
-
rescue LoadError, NameError
|
15
|
-
$stderr.puts "Compass could not access the rails environment
|
14
|
+
rescue LoadError, NameError => e
|
15
|
+
$stderr.puts "Compass could not access the rails environment: #{e}"
|
16
16
|
end
|
17
17
|
end
|
@@ -36,7 +36,13 @@ module Compass
|
|
36
36
|
calculate_horizontal_positions
|
37
37
|
@width = width_for_horizontal_layout
|
38
38
|
else
|
39
|
-
@images.sort!
|
39
|
+
@images.sort! do |a,b|
|
40
|
+
if (b.size <=> a.size) === 0
|
41
|
+
a.name <=> b.name
|
42
|
+
else
|
43
|
+
b.size <=> a.size
|
44
|
+
end
|
45
|
+
end
|
40
46
|
@width = width_for_vertical_layout
|
41
47
|
calulate_vertical_postions
|
42
48
|
@height = height_for_vertical_layout
|
@@ -673,6 +673,7 @@ input.span-24, textarea.span-24, select.span-24 {
|
|
673
673
|
background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), linear-gradient(left, rgba(0, 0, 0, 0) 0px, rgba(100, 100, 225, 0.25) 0px, rgba(100, 100, 225, 0.25) 30px, rgba(0, 0, 0, 0) 30px, rgba(0, 0, 0, 0) 40px, rgba(100, 100, 225, 0.25) 40px, rgba(100, 100, 225, 0.25) 70px, rgba(0, 0, 0, 0) 70px, rgba(0, 0, 0, 0) 80px, rgba(100, 100, 225, 0.25) 80px, rgba(100, 100, 225, 0.25) 110px, rgba(0, 0, 0, 0) 110px, rgba(0, 0, 0, 0) 120px, rgba(100, 100, 225, 0.25) 120px, rgba(100, 100, 225, 0.25) 150px, rgba(0, 0, 0, 0) 150px, rgba(0, 0, 0, 0) 160px, rgba(100, 100, 225, 0.25) 160px, rgba(100, 100, 225, 0.25) 190px, rgba(0, 0, 0, 0) 190px, rgba(0, 0, 0, 0) 200px, rgba(100, 100, 225, 0.25) 200px, rgba(100, 100, 225, 0.25) 230px, rgba(0, 0, 0, 0) 230px, rgba(0, 0, 0, 0) 240px, rgba(100, 100, 225, 0.25) 240px, rgba(100, 100, 225, 0.25) 270px, rgba(0, 0, 0, 0) 270px, rgba(0, 0, 0, 0) 280px, rgba(100, 100, 225, 0.25) 280px, rgba(100, 100, 225, 0.25) 310px, rgba(0, 0, 0, 0) 310px, rgba(0, 0, 0, 0) 320px, rgba(100, 100, 225, 0.25) 320px, rgba(100, 100, 225, 0.25) 350px, rgba(0, 0, 0, 0) 350px, rgba(0, 0, 0, 0) 360px, rgba(100, 100, 225, 0.25) 360px, rgba(100, 100, 225, 0.25) 390px, rgba(0, 0, 0, 0) 390px, rgba(0, 0, 0, 0) 400px, rgba(100, 100, 225, 0.25) 400px, rgba(100, 100, 225, 0.25) 430px, rgba(0, 0, 0, 0) 430px, rgba(0, 0, 0, 0) 440px, rgba(100, 100, 225, 0.25) 440px, rgba(100, 100, 225, 0.25) 470px, rgba(0, 0, 0, 0) 470px, rgba(0, 0, 0, 0) 480px, rgba(100, 100, 225, 0.25) 480px, rgba(100, 100, 225, 0.25) 510px, rgba(0, 0, 0, 0) 510px, rgba(0, 0, 0, 0) 520px, rgba(100, 100, 225, 0.25) 520px, rgba(100, 100, 225, 0.25) 550px, rgba(0, 0, 0, 0) 550px, rgba(0, 0, 0, 0) 560px, rgba(100, 100, 225, 0.25) 560px, rgba(100, 100, 225, 0.25) 590px, rgba(0, 0, 0, 0) 590px, rgba(0, 0, 0, 0) 600px, rgba(100, 100, 225, 0.25) 600px, rgba(100, 100, 225, 0.25) 630px, rgba(0, 0, 0, 0) 630px, rgba(0, 0, 0, 0) 640px, rgba(100, 100, 225, 0.25) 640px, rgba(100, 100, 225, 0.25) 670px, rgba(0, 0, 0, 0) 670px, rgba(0, 0, 0, 0) 680px, rgba(100, 100, 225, 0.25) 680px, rgba(100, 100, 225, 0.25) 710px, rgba(0, 0, 0, 0) 710px, rgba(0, 0, 0, 0) 720px, rgba(100, 100, 225, 0.25) 720px, rgba(100, 100, 225, 0.25) 750px, rgba(0, 0, 0, 0) 750px, rgba(0, 0, 0, 0) 760px, rgba(100, 100, 225, 0.25) 760px, rgba(100, 100, 225, 0.25) 790px, rgba(0, 0, 0, 0) 790px, rgba(0, 0, 0, 0) 800px, rgba(100, 100, 225, 0.25) 800px, rgba(100, 100, 225, 0.25) 830px, rgba(0, 0, 0, 0) 830px, rgba(0, 0, 0, 0) 840px, rgba(100, 100, 225, 0.25) 840px, rgba(100, 100, 225, 0.25) 870px, rgba(0, 0, 0, 0) 870px, rgba(0, 0, 0, 0) 880px, rgba(100, 100, 225, 0.25) 880px, rgba(100, 100, 225, 0.25) 910px, rgba(0, 0, 0, 0) 910px, rgba(0, 0, 0, 0) 920px, rgba(100, 100, 225, 0.25) 920px, rgba(100, 100, 225, 0.25) 950px, rgba(0, 0, 0, 0) 950px, rgba(0, 0, 0, 0) 960px);
|
674
674
|
-webkit-background-size: 100% 18px, auto;
|
675
675
|
-moz-background-size: 100% 18px, auto;
|
676
|
+
-o-background-size: 100% 18px, auto;
|
676
677
|
background-size: 100% 18px, auto;
|
677
678
|
background-position: left top; }
|
678
679
|
|
@@ -7,5 +7,6 @@
|
|
7
7
|
background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), linear-gradient(left, rgba(0, 0, 0, 0) 0px, rgba(100, 100, 225, 0.25) 0px, rgba(100, 100, 225, 0.25) 30px, rgba(0, 0, 0, 0) 30px, rgba(0, 0, 0, 0) 40px, rgba(100, 100, 225, 0.25) 40px, rgba(100, 100, 225, 0.25) 70px, rgba(0, 0, 0, 0) 70px, rgba(0, 0, 0, 0) 80px, rgba(100, 100, 225, 0.25) 80px, rgba(100, 100, 225, 0.25) 110px, rgba(0, 0, 0, 0) 110px, rgba(0, 0, 0, 0) 120px, rgba(100, 100, 225, 0.25) 120px, rgba(100, 100, 225, 0.25) 150px, rgba(0, 0, 0, 0) 150px, rgba(0, 0, 0, 0) 160px, rgba(100, 100, 225, 0.25) 160px, rgba(100, 100, 225, 0.25) 190px, rgba(0, 0, 0, 0) 190px, rgba(0, 0, 0, 0) 200px, rgba(100, 100, 225, 0.25) 200px, rgba(100, 100, 225, 0.25) 230px, rgba(0, 0, 0, 0) 230px, rgba(0, 0, 0, 0) 240px, rgba(100, 100, 225, 0.25) 240px, rgba(100, 100, 225, 0.25) 270px, rgba(0, 0, 0, 0) 270px, rgba(0, 0, 0, 0) 280px, rgba(100, 100, 225, 0.25) 280px, rgba(100, 100, 225, 0.25) 310px, rgba(0, 0, 0, 0) 310px, rgba(0, 0, 0, 0) 320px, rgba(100, 100, 225, 0.25) 320px, rgba(100, 100, 225, 0.25) 350px, rgba(0, 0, 0, 0) 350px, rgba(0, 0, 0, 0) 360px, rgba(100, 100, 225, 0.25) 360px, rgba(100, 100, 225, 0.25) 390px, rgba(0, 0, 0, 0) 390px, rgba(0, 0, 0, 0) 400px, rgba(100, 100, 225, 0.25) 400px, rgba(100, 100, 225, 0.25) 430px, rgba(0, 0, 0, 0) 430px, rgba(0, 0, 0, 0) 440px, rgba(100, 100, 225, 0.25) 440px, rgba(100, 100, 225, 0.25) 470px, rgba(0, 0, 0, 0) 470px, rgba(0, 0, 0, 0) 480px, rgba(100, 100, 225, 0.25) 480px, rgba(100, 100, 225, 0.25) 510px, rgba(0, 0, 0, 0) 510px, rgba(0, 0, 0, 0) 520px, rgba(100, 100, 225, 0.25) 520px, rgba(100, 100, 225, 0.25) 550px, rgba(0, 0, 0, 0) 550px, rgba(0, 0, 0, 0) 560px, rgba(100, 100, 225, 0.25) 560px, rgba(100, 100, 225, 0.25) 590px, rgba(0, 0, 0, 0) 590px, rgba(0, 0, 0, 0) 600px, rgba(100, 100, 225, 0.25) 600px, rgba(100, 100, 225, 0.25) 630px, rgba(0, 0, 0, 0) 630px, rgba(0, 0, 0, 0) 640px, rgba(100, 100, 225, 0.25) 640px, rgba(100, 100, 225, 0.25) 670px, rgba(0, 0, 0, 0) 670px, rgba(0, 0, 0, 0) 680px, rgba(100, 100, 225, 0.25) 680px, rgba(100, 100, 225, 0.25) 710px, rgba(0, 0, 0, 0) 710px, rgba(0, 0, 0, 0) 720px, rgba(100, 100, 225, 0.25) 720px, rgba(100, 100, 225, 0.25) 750px, rgba(0, 0, 0, 0) 750px, rgba(0, 0, 0, 0) 760px, rgba(100, 100, 225, 0.25) 760px, rgba(100, 100, 225, 0.25) 790px, rgba(0, 0, 0, 0) 790px, rgba(0, 0, 0, 0) 800px, rgba(100, 100, 225, 0.25) 800px, rgba(100, 100, 225, 0.25) 830px, rgba(0, 0, 0, 0) 830px, rgba(0, 0, 0, 0) 840px, rgba(100, 100, 225, 0.25) 840px, rgba(100, 100, 225, 0.25) 870px, rgba(0, 0, 0, 0) 870px, rgba(0, 0, 0, 0) 880px, rgba(100, 100, 225, 0.25) 880px, rgba(100, 100, 225, 0.25) 910px, rgba(0, 0, 0, 0) 910px, rgba(0, 0, 0, 0) 920px, rgba(100, 100, 225, 0.25) 920px, rgba(100, 100, 225, 0.25) 950px, rgba(0, 0, 0, 0) 950px, rgba(0, 0, 0, 0) 960px);
|
8
8
|
-webkit-background-size: 100% 18px, auto;
|
9
9
|
-moz-background-size: 100% 18px, auto;
|
10
|
+
-o-background-size: 100% 18px, auto;
|
10
11
|
background-size: 100% 18px, auto;
|
11
12
|
background-position: left top; }
|
@@ -1,19 +1,19 @@
|
|
1
1
|
.simple {
|
2
|
-
-webkit-border-radius: 4px
|
2
|
+
-webkit-border-radius: 4px 4px;
|
3
3
|
-moz-border-radius: 4px / 4px;
|
4
4
|
-ms-border-radius: 4px / 4px;
|
5
5
|
-o-border-radius: 4px / 4px;
|
6
6
|
border-radius: 4px / 4px; }
|
7
7
|
|
8
8
|
.compound {
|
9
|
-
-webkit-border-radius: 2px
|
9
|
+
-webkit-border-radius: 2px 3px;
|
10
10
|
-moz-border-radius: 2px 5px / 3px 6px;
|
11
11
|
-ms-border-radius: 2px 5px / 3px 6px;
|
12
12
|
-o-border-radius: 2px 5px / 3px 6px;
|
13
13
|
border-radius: 2px 5px / 3px 6px; }
|
14
14
|
|
15
15
|
.crazy {
|
16
|
-
-webkit-border-radius: 1px
|
16
|
+
-webkit-border-radius: 1px 2px;
|
17
17
|
-moz-border-radius: 1px 3px 5px 7px / 2px 4px 6px 8px;
|
18
18
|
-ms-border-radius: 1px 3px 5px 7px / 2px 4px 6px 8px;
|
19
19
|
-o-border-radius: 1px 3px 5px 7px / 2px 4px 6px 8px;
|
@@ -1,84 +1,103 @@
|
|
1
1
|
.hbox {
|
2
2
|
display: -webkit-box;
|
3
|
+
display: -moz-box;
|
3
4
|
display: -ms-box;
|
4
5
|
display: box;
|
5
6
|
-webkit-box-orient: horizontal;
|
7
|
+
-moz-box-orient: horizontal;
|
6
8
|
-ms-box-orient: horizontal;
|
7
9
|
box-orient: horizontal;
|
8
10
|
-webkit-box-align: stretch;
|
11
|
+
-moz-box-align: stretch;
|
9
12
|
-ms-box-align: stretch;
|
10
13
|
box-align: stretch; }
|
11
14
|
.hbox > * {
|
12
15
|
-webkit-box-flex: 0;
|
16
|
+
-moz-box-flex: 0;
|
13
17
|
-ms-box-flex: 0;
|
14
18
|
box-flex: 0; }
|
15
19
|
|
16
20
|
.vbox {
|
17
21
|
display: -webkit-box;
|
22
|
+
display: -moz-box;
|
18
23
|
display: -ms-box;
|
19
24
|
display: box;
|
20
25
|
-webkit-box-orient: vertical;
|
26
|
+
-moz-box-orient: vertical;
|
21
27
|
-ms-box-orient: vertical;
|
22
28
|
box-orient: vertical;
|
23
29
|
-webkit-box-align: stretch;
|
30
|
+
-moz-box-align: stretch;
|
24
31
|
-ms-box-align: stretch;
|
25
32
|
box-align: stretch; }
|
26
33
|
.vbox > * {
|
27
34
|
-webkit-box-flex: 0;
|
35
|
+
-moz-box-flex: 0;
|
28
36
|
-ms-box-flex: 0;
|
29
37
|
box-flex: 0; }
|
30
38
|
|
31
39
|
.spacer {
|
32
40
|
-webkit-box-flex: 1;
|
41
|
+
-moz-box-flex: 1;
|
33
42
|
-ms-box-flex: 1;
|
34
43
|
box-flex: 1; }
|
35
44
|
|
36
45
|
.reverse {
|
37
46
|
-webkit-box-direction: reverse;
|
47
|
+
-moz-box-direction: reverse;
|
38
48
|
-ms-box-direction: reverse;
|
39
49
|
box-direction: reverse; }
|
40
50
|
|
41
51
|
.box-flex-0 {
|
42
52
|
-webkit-box-flex: 0;
|
53
|
+
-moz-box-flex: 0;
|
43
54
|
-ms-box-flex: 0;
|
44
55
|
box-flex: 0; }
|
45
56
|
|
46
57
|
.box-flex-1 {
|
47
58
|
-webkit-box-flex: 1;
|
59
|
+
-moz-box-flex: 1;
|
48
60
|
-ms-box-flex: 1;
|
49
61
|
box-flex: 1; }
|
50
62
|
|
51
63
|
.box-flex-2 {
|
52
64
|
-webkit-box-flex: 2;
|
65
|
+
-moz-box-flex: 2;
|
53
66
|
-ms-box-flex: 2;
|
54
67
|
box-flex: 2; }
|
55
68
|
|
56
69
|
.box-flex-group-0 {
|
57
70
|
-webkit-box-flex-group: 0;
|
71
|
+
-moz-box-flex-group: 0;
|
58
72
|
-ms-box-flex-group: 0;
|
59
73
|
box-flex-group: 0; }
|
60
74
|
|
61
75
|
.box-flex-group-1 {
|
62
76
|
-webkit-box-flex-group: 1;
|
77
|
+
-moz-box-flex-group: 1;
|
63
78
|
-ms-box-flex-group: 1;
|
64
79
|
box-flex-group: 1; }
|
65
80
|
|
66
81
|
.box-flex-group-2 {
|
67
82
|
-webkit-box-flex-group: 2;
|
83
|
+
-moz-box-flex-group: 2;
|
68
84
|
-ms-box-flex-group: 2;
|
69
85
|
box-flex-group: 2; }
|
70
86
|
|
71
87
|
.start {
|
72
88
|
-webkit-box-pack: start;
|
89
|
+
-moz-box-pack: start;
|
73
90
|
-ms-box-pack: start;
|
74
91
|
box-pack: start; }
|
75
92
|
|
76
93
|
.end {
|
77
94
|
-webkit-box-pack: end;
|
95
|
+
-moz-box-pack: end;
|
78
96
|
-ms-box-pack: end;
|
79
97
|
box-pack: end; }
|
80
98
|
|
81
99
|
.center {
|
82
100
|
-webkit-box-pack: center;
|
101
|
+
-moz-box-pack: center;
|
83
102
|
-ms-box-pack: center;
|
84
103
|
box-pack: center; }
|
@@ -1,14 +1,17 @@
|
|
1
1
|
.box-shadow {
|
2
2
|
-webkit-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
|
3
3
|
-moz-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
|
4
|
+
-o-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
|
4
5
|
box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222; }
|
5
6
|
|
6
7
|
.single-box-shadow {
|
7
8
|
-webkit-box-shadow: 0px 0px 5px #333333;
|
8
9
|
-moz-box-shadow: 0px 0px 5px #333333;
|
10
|
+
-o-box-shadow: 0px 0px 5px #333333;
|
9
11
|
box-shadow: 0px 0px 5px #333333; }
|
10
12
|
|
11
13
|
.multiple-box-shadows {
|
12
14
|
-webkit-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
|
13
15
|
-moz-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
|
16
|
+
-o-box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222;
|
14
17
|
box-shadow: 0px 0px 5px #333333, 2px 2px 5px #222222; }
|
@@ -1,39 +1,47 @@
|
|
1
1
|
.column-count {
|
2
2
|
-webkit-column-count: 5;
|
3
3
|
-moz-column-count: 5;
|
4
|
+
-o-column-count: 5;
|
4
5
|
column-count: 5; }
|
5
6
|
|
6
7
|
.column-gap {
|
7
8
|
-webkit-column-gap: 10px;
|
8
9
|
-moz-column-gap: 10px;
|
10
|
+
-o-column-gap: 10px;
|
9
11
|
column-gap: 10px; }
|
10
12
|
|
11
13
|
.column-width {
|
12
14
|
-webkit-column-width: 90px;
|
13
15
|
-moz-column-width: 90px;
|
16
|
+
-o-column-width: 90px;
|
14
17
|
column-width: 90px; }
|
15
18
|
|
16
19
|
.column-rule-width {
|
17
20
|
-webkit-rule-width: 1px;
|
18
21
|
-moz-rule-width: 1px;
|
22
|
+
-o-rule-width: 1px;
|
19
23
|
rule-width: 1px; }
|
20
24
|
|
21
25
|
.column-rule-style {
|
22
26
|
-webkit-rule-style: dotted;
|
23
27
|
-moz-rule-style: dotted;
|
28
|
+
-o-rule-style: dotted;
|
24
29
|
rule-style: dotted; }
|
25
30
|
|
26
31
|
.column-rule-color {
|
27
32
|
-webkit-rule-color: blue;
|
28
33
|
-moz-rule-color: blue;
|
34
|
+
-o-rule-color: blue;
|
29
35
|
rule-color: blue; }
|
30
36
|
|
31
37
|
.column-rule {
|
32
38
|
-webkit-column-rule: 1px solid blue;
|
33
39
|
-moz-column-rule: 1px solid blue;
|
40
|
+
-o-column-rule: 1px solid blue;
|
34
41
|
column-rule: 1px solid blue; }
|
35
42
|
|
36
43
|
.column-rule-spaced {
|
37
44
|
-webkit-column-rule: 1px solid blue;
|
38
45
|
-moz-column-rule: 1px solid blue;
|
46
|
+
-o-column-rule: 1px solid blue;
|
39
47
|
column-rule: 1px solid blue; }
|
@@ -7,6 +7,7 @@
|
|
7
7
|
background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
8
8
|
-webkit-background-size: 100% 1.5em;
|
9
9
|
-moz-background-size: 100% 1.5em;
|
10
|
+
-o-background-size: 100% 1.5em;
|
10
11
|
background-size: 100% 1.5em;
|
11
12
|
background-position: left top; }
|
12
13
|
|
@@ -28,6 +29,7 @@
|
|
28
29
|
background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), linear-gradient(left, rgba(0, 0, 0, 0) 0px, rgba(100, 100, 225, 0.25) 0px, rgba(100, 100, 225, 0.25) 30px, rgba(0, 0, 0, 0) 30px, rgba(0, 0, 0, 0) 40px, rgba(100, 100, 225, 0.25) 40px, rgba(100, 100, 225, 0.25) 70px, rgba(0, 0, 0, 0) 70px, rgba(0, 0, 0, 0) 80px, rgba(100, 100, 225, 0.25) 80px, rgba(100, 100, 225, 0.25) 110px, rgba(0, 0, 0, 0) 110px, rgba(0, 0, 0, 0) 120px, rgba(100, 100, 225, 0.25) 120px, rgba(100, 100, 225, 0.25) 150px, rgba(0, 0, 0, 0) 150px, rgba(0, 0, 0, 0) 160px, rgba(100, 100, 225, 0.25) 160px, rgba(100, 100, 225, 0.25) 190px, rgba(0, 0, 0, 0) 190px, rgba(0, 0, 0, 0) 200px, rgba(100, 100, 225, 0.25) 200px, rgba(100, 100, 225, 0.25) 230px, rgba(0, 0, 0, 0) 230px, rgba(0, 0, 0, 0) 240px, rgba(100, 100, 225, 0.25) 240px, rgba(100, 100, 225, 0.25) 270px, rgba(0, 0, 0, 0) 270px, rgba(0, 0, 0, 0) 280px, rgba(100, 100, 225, 0.25) 280px, rgba(100, 100, 225, 0.25) 310px, rgba(0, 0, 0, 0) 310px, rgba(0, 0, 0, 0) 320px, rgba(100, 100, 225, 0.25) 320px, rgba(100, 100, 225, 0.25) 350px, rgba(0, 0, 0, 0) 350px, rgba(0, 0, 0, 0) 360px, rgba(100, 100, 225, 0.25) 360px, rgba(100, 100, 225, 0.25) 390px, rgba(0, 0, 0, 0) 390px, rgba(0, 0, 0, 0) 400px, rgba(100, 100, 225, 0.25) 400px, rgba(100, 100, 225, 0.25) 430px, rgba(0, 0, 0, 0) 430px, rgba(0, 0, 0, 0) 440px, rgba(100, 100, 225, 0.25) 440px, rgba(100, 100, 225, 0.25) 470px, rgba(0, 0, 0, 0) 470px, rgba(0, 0, 0, 0) 480px, rgba(100, 100, 225, 0.25) 480px, rgba(100, 100, 225, 0.25) 510px, rgba(0, 0, 0, 0) 510px, rgba(0, 0, 0, 0) 520px, rgba(100, 100, 225, 0.25) 520px, rgba(100, 100, 225, 0.25) 550px, rgba(0, 0, 0, 0) 550px, rgba(0, 0, 0, 0) 560px, rgba(100, 100, 225, 0.25) 560px, rgba(100, 100, 225, 0.25) 590px, rgba(0, 0, 0, 0) 590px, rgba(0, 0, 0, 0) 600px, rgba(100, 100, 225, 0.25) 600px, rgba(100, 100, 225, 0.25) 630px, rgba(0, 0, 0, 0) 630px, rgba(0, 0, 0, 0) 640px, rgba(100, 100, 225, 0.25) 640px, rgba(100, 100, 225, 0.25) 670px, rgba(0, 0, 0, 0) 670px, rgba(0, 0, 0, 0) 680px, rgba(100, 100, 225, 0.25) 680px, rgba(100, 100, 225, 0.25) 710px, rgba(0, 0, 0, 0) 710px, rgba(0, 0, 0, 0) 720px, rgba(100, 100, 225, 0.25) 720px, rgba(100, 100, 225, 0.25) 750px, rgba(0, 0, 0, 0) 750px, rgba(0, 0, 0, 0) 760px, rgba(100, 100, 225, 0.25) 760px, rgba(100, 100, 225, 0.25) 790px, rgba(0, 0, 0, 0) 790px, rgba(0, 0, 0, 0) 800px, rgba(100, 100, 225, 0.25) 800px, rgba(100, 100, 225, 0.25) 830px, rgba(0, 0, 0, 0) 830px, rgba(0, 0, 0, 0) 840px, rgba(100, 100, 225, 0.25) 840px, rgba(100, 100, 225, 0.25) 870px, rgba(0, 0, 0, 0) 870px, rgba(0, 0, 0, 0) 880px, rgba(100, 100, 225, 0.25) 880px, rgba(100, 100, 225, 0.25) 910px, rgba(0, 0, 0, 0) 910px, rgba(0, 0, 0, 0) 920px, rgba(100, 100, 225, 0.25) 920px, rgba(100, 100, 225, 0.25) 950px, rgba(0, 0, 0, 0) 950px, rgba(0, 0, 0, 0) 960px);
|
29
30
|
-webkit-background-size: 100% 1.5em, auto;
|
30
31
|
-moz-background-size: 100% 1.5em, auto;
|
32
|
+
-o-background-size: 100% 1.5em, auto;
|
31
33
|
background-size: 100% 1.5em, auto;
|
32
34
|
background-position: left top; }
|
33
35
|
|
@@ -40,6 +42,7 @@
|
|
40
42
|
background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%);
|
41
43
|
-webkit-background-size: 100% 1.5em;
|
42
44
|
-moz-background-size: 100% 1.5em;
|
45
|
+
-o-background-size: 100% 1.5em;
|
43
46
|
background-size: 100% 1.5em;
|
44
47
|
background-position: left top; }
|
45
48
|
|
@@ -61,6 +64,7 @@
|
|
61
64
|
background-image: linear-gradient(bottom, rgba(0, 0, 0, 0.5) 5%, rgba(0, 0, 0, 0) 5%), linear-gradient(left, rgba(0, 0, 0, 0) 11%, rgba(100, 100, 225, 0.25) 11%, rgba(100, 100, 225, 0.25) 16%, rgba(0, 0, 0, 0) 16%, rgba(0, 0, 0, 0) 17%, rgba(100, 100, 225, 0.25) 17%, rgba(100, 100, 225, 0.25) 22%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0) 23%, rgba(100, 100, 225, 0.25) 23%, rgba(100, 100, 225, 0.25) 28%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0) 29%, rgba(100, 100, 225, 0.25) 29%, rgba(100, 100, 225, 0.25) 34%, rgba(0, 0, 0, 0) 34%, rgba(0, 0, 0, 0) 35%, rgba(100, 100, 225, 0.25) 35%, rgba(100, 100, 225, 0.25) 40%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 41%, rgba(100, 100, 225, 0.25) 41%, rgba(100, 100, 225, 0.25) 46%, rgba(0, 0, 0, 0) 46%, rgba(0, 0, 0, 0) 47%, rgba(100, 100, 225, 0.25) 47%, rgba(100, 100, 225, 0.25) 52%, rgba(0, 0, 0, 0) 52%, rgba(0, 0, 0, 0) 53%, rgba(100, 100, 225, 0.25) 53%, rgba(100, 100, 225, 0.25) 58%, rgba(0, 0, 0, 0) 58%, rgba(0, 0, 0, 0) 59%, rgba(100, 100, 225, 0.25) 59%, rgba(100, 100, 225, 0.25) 64%, rgba(0, 0, 0, 0) 64%, rgba(0, 0, 0, 0) 65%, rgba(100, 100, 225, 0.25) 65%, rgba(100, 100, 225, 0.25) 70%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 71%, rgba(100, 100, 225, 0.25) 71%, rgba(100, 100, 225, 0.25) 76%, rgba(0, 0, 0, 0) 76%, rgba(0, 0, 0, 0) 77%, rgba(100, 100, 225, 0.25) 77%, rgba(100, 100, 225, 0.25) 82%, rgba(0, 0, 0, 0) 82%, rgba(0, 0, 0, 0) 83%, rgba(100, 100, 225, 0.25) 83%, rgba(100, 100, 225, 0.25) 88%, rgba(0, 0, 0, 0) 88%, rgba(0, 0, 0, 0) 89%, rgba(100, 100, 225, 0.25) 89%, rgba(100, 100, 225, 0.25) 94%, rgba(0, 0, 0, 0) 94%, rgba(0, 0, 0, 0) 95%, rgba(100, 100, 225, 0.25) 95%, rgba(100, 100, 225, 0.25) 100%, rgba(0, 0, 0, 0) 100%, rgba(0, 0, 0, 0) 100%);
|
62
65
|
-webkit-background-size: 100% 1.5em, auto;
|
63
66
|
-moz-background-size: 100% 1.5em, auto;
|
67
|
+
-o-background-size: 100% 1.5em, auto;
|
64
68
|
background-size: 100% 1.5em, auto;
|
65
69
|
background-position: left top; }
|
66
70
|
|
@@ -1,8 +1,8 @@
|
|
1
1
|
.flag-sprite, #flags .us, #flags .au, #flags .ca, #flags .es, #flags .eg, #flags .ly, .flag-ad, .flag-ae, .flag-af, .flag-ag, .flag-ai, .flag-al, .flag-am, .flag-an, .flag-ao, .flag-ar, .flag-as, .flag-at, .flag-au, .flag-aw, .flag-ax, .flag-az, .flag-ba, .flag-bb, .flag-bd, .flag-be, .flag-bf, .flag-bg, .flag-bh, .flag-bi, .flag-bj, .flag-bm, .flag-bn, .flag-bo, .flag-br, .flag-bs, .flag-bt, .flag-bv, .flag-bw, .flag-by, .flag-bz, .flag-ca, .flag-catalonia, .flag-cc, .flag-cd, .flag-cf, .flag-cg, .flag-ch, .flag-ci, .flag-ck, .flag-cl, .flag-cm, .flag-cn, .flag-co, .flag-cr, .flag-cs, .flag-cu, .flag-cv, .flag-cx, .flag-cy, .flag-cz, .flag-de, .flag-dj, .flag-dk, .flag-dm, .flag-do, .flag-dz, .flag-ec, .flag-ee, .flag-eg, .flag-eh, .flag-england, .flag-er, .flag-es, .flag-et, .flag-europeanunion, .flag-fam, .flag-fi, .flag-fj, .flag-fk, .flag-fm, .flag-fo, .flag-fr, .flag-ga, .flag-gb, .flag-gd, .flag-ge, .flag-gf, .flag-gh, .flag-gi, .flag-gl, .flag-gm, .flag-gn, .flag-gp, .flag-gq, .flag-gr, .flag-gs, .flag-gt, .flag-gu, .flag-gw, .flag-gy, .flag-hk, .flag-hm, .flag-hn, .flag-hr, .flag-ht, .flag-hu, .flag-id-2, .flag-ie, .flag-il, .flag-in, .flag-io, .flag-iq, .flag-ir, .flag-is, .flag-it, .flag-jm, .flag-jo, .flag-jp, .flag-ke, .flag-kg, .flag-kh, .flag-ki, .flag-km, .flag-kn, .flag-kp, .flag-kr, .flag-kw, .flag-ky, .flag-kz, .flag-la, .flag-lb, .flag-lc, .flag-li, .flag-lk, .flag-lr, .flag-ls, .flag-lt, .flag-lu, .flag-lv, .flag-ly, .flag-ma, .flag-mc, .flag-md, .flag-me, .flag-mg, .flag-mh, .flag-mk, .flag-ml, .flag-mm, .flag-mn, .flag-mo, .flag-mp, .flag-mq, .flag-mr, .flag-ms, .flag-mt, .flag-mu, .flag-mv, .flag-mw, .flag-mx, .flag-my, .flag-mz, .flag-na, .flag-nc, .flag-ne, .flag-nf, .flag-ng, .flag-ni, .flag-nl, .flag-no, .flag-np, .flag-nr, .flag-nu, .flag-nz, .flag-om, .flag-pa, .flag-pe, .flag-pf, .flag-pg, .flag-ph, .flag-pk, .flag-pl, .flag-pm, .flag-pn, .flag-pr, .flag-ps, .flag-pt, .flag-pw, .flag-py, .flag-qa, .flag-re, .flag-ro, .flag-rs, .flag-ru, .flag-rw, .flag-sa, .flag-sb, .flag-sc, .flag-scotland, .flag-sd, .flag-se, .flag-sg, .flag-sh, .flag-si, .flag-sj, .flag-sk, .flag-sl, .flag-sm, .flag-sn, .flag-so, .flag-sr, .flag-st, .flag-sv, .flag-sy, .flag-sz, .flag-tc, .flag-td, .flag-tf, .flag-tg, .flag-th, .flag-tj, .flag-tk, .flag-tl, .flag-tm, .flag-tn, .flag-to, .flag-tr, .flag-tt, .flag-tv, .flag-tw, .flag-tz, .flag-ua, .flag-ug, .flag-um, .flag-us, .flag-uy, .flag-uz, .flag-va, .flag-vc, .flag-ve, .flag-vg, .flag-vi, .flag-vn, .flag-vu, .flag-wales, .flag-wf, .flag-ws, .flag-ye, .flag-yt, .flag-za, .flag-zm, .flag-zw {
|
2
|
-
background: url('/images/flag-
|
2
|
+
background: url('/images/flag-s4798b5a210.png') no-repeat; }
|
3
3
|
|
4
4
|
#flags .us {
|
5
|
-
background-position: 0 -
|
5
|
+
background-position: 0 -429px;
|
6
6
|
height: 11px;
|
7
7
|
width: 16px; }
|
8
8
|
#flags .au {
|
@@ -14,7 +14,7 @@
|
|
14
14
|
height: 11px;
|
15
15
|
width: 16px; }
|
16
16
|
#flags .es {
|
17
|
-
background-position: 0 -
|
17
|
+
background-position: 0 -2113px;
|
18
18
|
height: 11px;
|
19
19
|
width: 16px; }
|
20
20
|
#flags .eg {
|
@@ -37,12 +37,12 @@
|
|
37
37
|
width: 16px; }
|
38
38
|
|
39
39
|
.flag-af {
|
40
|
-
background-position: 0 -
|
40
|
+
background-position: 0 -1034px;
|
41
41
|
height: 11px;
|
42
42
|
width: 16px; }
|
43
43
|
|
44
44
|
.flag-ag {
|
45
|
-
background-position: 0 -
|
45
|
+
background-position: 0 -737px;
|
46
46
|
height: 11px;
|
47
47
|
width: 16px; }
|
48
48
|
|
@@ -52,7 +52,7 @@
|
|
52
52
|
width: 16px; }
|
53
53
|
|
54
54
|
.flag-al {
|
55
|
-
background-position: 0 -
|
55
|
+
background-position: 0 -891px;
|
56
56
|
height: 11px;
|
57
57
|
width: 16px; }
|
58
58
|
|
@@ -72,7 +72,7 @@
|
|
72
72
|
width: 16px; }
|
73
73
|
|
74
74
|
.flag-ar {
|
75
|
-
background-position: 0 -
|
75
|
+
background-position: 0 -1728px;
|
76
76
|
height: 11px;
|
77
77
|
width: 16px; }
|
78
78
|
|
@@ -92,12 +92,12 @@
|
|
92
92
|
width: 16px; }
|
93
93
|
|
94
94
|
.flag-aw {
|
95
|
-
background-position: 0 -
|
95
|
+
background-position: 0 -1353px;
|
96
96
|
height: 11px;
|
97
97
|
width: 16px; }
|
98
98
|
|
99
99
|
.flag-ax {
|
100
|
-
background-position: 0 -
|
100
|
+
background-position: 0 -517px;
|
101
101
|
height: 11px;
|
102
102
|
width: 16px; }
|
103
103
|
|
@@ -112,12 +112,12 @@
|
|
112
112
|
width: 16px; }
|
113
113
|
|
114
114
|
.flag-bb {
|
115
|
-
background-position: 0 -
|
115
|
+
background-position: 0 -1243px;
|
116
116
|
height: 11px;
|
117
117
|
width: 16px; }
|
118
118
|
|
119
119
|
.flag-bd {
|
120
|
-
background-position: 0 -
|
120
|
+
background-position: 0 -1629px;
|
121
121
|
height: 11px;
|
122
122
|
width: 16px; }
|
123
123
|
|
@@ -127,7 +127,7 @@
|
|
127
127
|
width: 16px; }
|
128
128
|
|
129
129
|
.flag-bf {
|
130
|
-
background-position: 0 -
|
130
|
+
background-position: 0 -2157px;
|
131
131
|
height: 11px;
|
132
132
|
width: 16px; }
|
133
133
|
|
@@ -162,7 +162,7 @@
|
|
162
162
|
width: 16px; }
|
163
163
|
|
164
164
|
.flag-bo {
|
165
|
-
background-position: 0 -
|
165
|
+
background-position: 0 -2168px;
|
166
166
|
height: 11px;
|
167
167
|
width: 16px; }
|
168
168
|
|
@@ -172,7 +172,7 @@
|
|
172
172
|
width: 16px; }
|
173
173
|
|
174
174
|
.flag-bs {
|
175
|
-
background-position: 0 -
|
175
|
+
background-position: 0 -1397px;
|
176
176
|
height: 11px;
|
177
177
|
width: 16px; }
|
178
178
|
|
@@ -182,17 +182,17 @@
|
|
182
182
|
width: 16px; }
|
183
183
|
|
184
184
|
.flag-bv {
|
185
|
-
background-position: 0 -
|
185
|
+
background-position: 0 -1265px;
|
186
186
|
height: 11px;
|
187
187
|
width: 16px; }
|
188
188
|
|
189
189
|
.flag-bw {
|
190
|
-
background-position: 0 -
|
190
|
+
background-position: 0 -2333px;
|
191
191
|
height: 11px;
|
192
192
|
width: 16px; }
|
193
193
|
|
194
194
|
.flag-by {
|
195
|
-
background-position: 0 -
|
195
|
+
background-position: 0 -1452px;
|
196
196
|
height: 11px;
|
197
197
|
width: 16px; }
|
198
198
|
|
@@ -227,7 +227,7 @@
|
|
227
227
|
width: 16px; }
|
228
228
|
|
229
229
|
.flag-cg {
|
230
|
-
background-position: 0 -
|
230
|
+
background-position: 0 -1530px;
|
231
231
|
height: 11px;
|
232
232
|
width: 16px; }
|
233
233
|
|
@@ -242,17 +242,17 @@
|
|
242
242
|
width: 16px; }
|
243
243
|
|
244
244
|
.flag-ck {
|
245
|
-
background-position: 0 -
|
245
|
+
background-position: 0 -462px;
|
246
246
|
height: 11px;
|
247
247
|
width: 16px; }
|
248
248
|
|
249
249
|
.flag-cl {
|
250
|
-
background-position: 0 -
|
250
|
+
background-position: 0 -2388px;
|
251
251
|
height: 11px;
|
252
252
|
width: 16px; }
|
253
253
|
|
254
254
|
.flag-cm {
|
255
|
-
background-position: 0 -
|
255
|
+
background-position: 0 -2047px;
|
256
256
|
height: 11px;
|
257
257
|
width: 16px; }
|
258
258
|
|
@@ -267,7 +267,7 @@
|
|
267
267
|
width: 16px; }
|
268
268
|
|
269
269
|
.flag-cr {
|
270
|
-
background-position: 0 -
|
270
|
+
background-position: 0 -2025px;
|
271
271
|
height: 11px;
|
272
272
|
width: 16px; }
|
273
273
|
|
@@ -287,7 +287,7 @@
|
|
287
287
|
width: 16px; }
|
288
288
|
|
289
289
|
.flag-cx {
|
290
|
-
background-position: 0 -
|
290
|
+
background-position: 0 -407px;
|
291
291
|
height: 11px;
|
292
292
|
width: 16px; }
|
293
293
|
|
@@ -297,7 +297,7 @@
|
|
297
297
|
width: 16px; }
|
298
298
|
|
299
299
|
.flag-cz {
|
300
|
-
background-position: 0 -
|
300
|
+
background-position: 0 -1706px;
|
301
301
|
height: 11px;
|
302
302
|
width: 16px; }
|
303
303
|
|
@@ -312,7 +312,7 @@
|
|
312
312
|
width: 16px; }
|
313
313
|
|
314
314
|
.flag-dk {
|
315
|
-
background-position: 0 -
|
315
|
+
background-position: 0 -1959px;
|
316
316
|
height: 11px;
|
317
317
|
width: 16px; }
|
318
318
|
|
@@ -322,7 +322,7 @@
|
|
322
322
|
width: 16px; }
|
323
323
|
|
324
324
|
.flag-do {
|
325
|
-
background-position: 0 -
|
325
|
+
background-position: 0 -1772px;
|
326
326
|
height: 11px;
|
327
327
|
width: 16px; }
|
328
328
|
|
@@ -337,7 +337,7 @@
|
|
337
337
|
width: 16px; }
|
338
338
|
|
339
339
|
.flag-ee {
|
340
|
-
background-position: 0 -
|
340
|
+
background-position: 0 -2564px;
|
341
341
|
height: 11px;
|
342
342
|
width: 16px; }
|
343
343
|
|
@@ -347,22 +347,22 @@
|
|
347
347
|
width: 16px; }
|
348
348
|
|
349
349
|
.flag-eh {
|
350
|
-
background-position: 0 -
|
350
|
+
background-position: 0 -1408px;
|
351
351
|
height: 11px;
|
352
352
|
width: 16px; }
|
353
353
|
|
354
354
|
.flag-england {
|
355
|
-
background-position: 0 -
|
355
|
+
background-position: 0 -1563px;
|
356
356
|
height: 11px;
|
357
357
|
width: 16px; }
|
358
358
|
|
359
359
|
.flag-er {
|
360
|
-
background-position: 0 -
|
360
|
+
background-position: 0 -418px;
|
361
361
|
height: 11px;
|
362
362
|
width: 16px; }
|
363
363
|
|
364
364
|
.flag-es {
|
365
|
-
background-position: 0 -
|
365
|
+
background-position: 0 -2113px;
|
366
366
|
height: 11px;
|
367
367
|
width: 16px; }
|
368
368
|
|
@@ -372,7 +372,7 @@
|
|
372
372
|
width: 16px; }
|
373
373
|
|
374
374
|
.flag-europeanunion {
|
375
|
-
background-position: 0 -
|
375
|
+
background-position: 0 -1254px;
|
376
376
|
height: 11px;
|
377
377
|
width: 16px; }
|
378
378
|
|
@@ -382,7 +382,7 @@
|
|
382
382
|
width: 16px; }
|
383
383
|
|
384
384
|
.flag-fi {
|
385
|
-
background-position: 0 -
|
385
|
+
background-position: 0 -1783px;
|
386
386
|
height: 11px;
|
387
387
|
width: 16px; }
|
388
388
|
|
@@ -397,17 +397,17 @@
|
|
397
397
|
width: 16px; }
|
398
398
|
|
399
399
|
.flag-fm {
|
400
|
-
background-position: 0 -
|
400
|
+
background-position: 0 -1144px;
|
401
401
|
height: 11px;
|
402
402
|
width: 16px; }
|
403
403
|
|
404
404
|
.flag-fo {
|
405
|
-
background-position: 0 -
|
405
|
+
background-position: 0 -1585px;
|
406
406
|
height: 11px;
|
407
407
|
width: 16px; }
|
408
408
|
|
409
409
|
.flag-fr {
|
410
|
-
background-position: 0 -
|
410
|
+
background-position: 0 -1640px;
|
411
411
|
height: 11px;
|
412
412
|
width: 16px; }
|
413
413
|
|
@@ -427,17 +427,17 @@
|
|
427
427
|
width: 16px; }
|
428
428
|
|
429
429
|
.flag-ge {
|
430
|
-
background-position: 0 -
|
430
|
+
background-position: 0 -473px;
|
431
431
|
height: 11px;
|
432
432
|
width: 16px; }
|
433
433
|
|
434
434
|
.flag-gf {
|
435
|
-
background-position: 0 -
|
435
|
+
background-position: 0 -1651px;
|
436
436
|
height: 11px;
|
437
437
|
width: 16px; }
|
438
438
|
|
439
439
|
.flag-gh {
|
440
|
-
background-position: 0 -
|
440
|
+
background-position: 0 -2256px;
|
441
441
|
height: 11px;
|
442
442
|
width: 16px; }
|
443
443
|
|
@@ -447,7 +447,7 @@
|
|
447
447
|
width: 16px; }
|
448
448
|
|
449
449
|
.flag-gl {
|
450
|
-
background-position: 0 -
|
450
|
+
background-position: 0 -1981px;
|
451
451
|
height: 11px;
|
452
452
|
width: 16px; }
|
453
453
|
|
@@ -462,7 +462,7 @@
|
|
462
462
|
width: 16px; }
|
463
463
|
|
464
464
|
.flag-gp {
|
465
|
-
background-position: 0 -
|
465
|
+
background-position: 0 -1893px;
|
466
466
|
height: 11px;
|
467
467
|
width: 16px; }
|
468
468
|
|
@@ -472,7 +472,7 @@
|
|
472
472
|
width: 16px; }
|
473
473
|
|
474
474
|
.flag-gr {
|
475
|
-
background-position: 0 -
|
475
|
+
background-position: 0 -1419px;
|
476
476
|
height: 11px;
|
477
477
|
width: 16px; }
|
478
478
|
|
@@ -482,7 +482,7 @@
|
|
482
482
|
width: 16px; }
|
483
483
|
|
484
484
|
.flag-gt {
|
485
|
-
background-position: 0 -
|
485
|
+
background-position: 0 -2201px;
|
486
486
|
height: 11px;
|
487
487
|
width: 16px; }
|
488
488
|
|
@@ -522,12 +522,12 @@
|
|
522
522
|
width: 16px; }
|
523
523
|
|
524
524
|
.flag-ht {
|
525
|
-
background-position: 0 -
|
525
|
+
background-position: 0 -2344px;
|
526
526
|
height: 11px;
|
527
527
|
width: 16px; }
|
528
528
|
|
529
529
|
.flag-hu {
|
530
|
-
background-position: 0 -
|
530
|
+
background-position: 0 -2608px;
|
531
531
|
height: 11px;
|
532
532
|
width: 16px; }
|
533
533
|
|
@@ -547,7 +547,7 @@
|
|
547
547
|
width: 16px; }
|
548
548
|
|
549
549
|
.flag-in {
|
550
|
-
background-position: 0 -
|
550
|
+
background-position: 0 -1596px;
|
551
551
|
height: 11px;
|
552
552
|
width: 16px; }
|
553
553
|
|
@@ -602,7 +602,7 @@
|
|
602
602
|
width: 16px; }
|
603
603
|
|
604
604
|
.flag-kh {
|
605
|
-
background-position: 0 -
|
605
|
+
background-position: 0 -1045px;
|
606
606
|
height: 11px;
|
607
607
|
width: 16px; }
|
608
608
|
|
@@ -617,12 +617,12 @@
|
|
617
617
|
width: 16px; }
|
618
618
|
|
619
619
|
.flag-kn {
|
620
|
-
background-position: 0 -
|
620
|
+
background-position: 0 -528px;
|
621
621
|
height: 11px;
|
622
622
|
width: 16px; }
|
623
623
|
|
624
624
|
.flag-kp {
|
625
|
-
background-position: 0 -
|
625
|
+
background-position: 0 -1001px;
|
626
626
|
height: 11px;
|
627
627
|
width: 16px; }
|
628
628
|
|
@@ -632,7 +632,7 @@
|
|
632
632
|
width: 16px; }
|
633
633
|
|
634
634
|
.flag-kw {
|
635
|
-
background-position: 0 -
|
635
|
+
background-position: 0 -1992px;
|
636
636
|
height: 11px;
|
637
637
|
width: 16px; }
|
638
638
|
|
@@ -642,12 +642,12 @@
|
|
642
642
|
width: 16px; }
|
643
643
|
|
644
644
|
.flag-kz {
|
645
|
-
background-position: 0 -
|
645
|
+
background-position: 0 -704px;
|
646
646
|
height: 11px;
|
647
647
|
width: 16px; }
|
648
648
|
|
649
649
|
.flag-la {
|
650
|
-
background-position: 0 -
|
650
|
+
background-position: 0 -1100px;
|
651
651
|
height: 11px;
|
652
652
|
width: 16px; }
|
653
653
|
|
@@ -687,7 +687,7 @@
|
|
687
687
|
width: 16px; }
|
688
688
|
|
689
689
|
.flag-lu {
|
690
|
-
background-position: 0 -
|
690
|
+
background-position: 0 -2212px;
|
691
691
|
height: 11px;
|
692
692
|
width: 16px; }
|
693
693
|
|
@@ -702,7 +702,7 @@
|
|
702
702
|
width: 16px; }
|
703
703
|
|
704
704
|
.flag-ma {
|
705
|
-
background-position: 0 -
|
705
|
+
background-position: 0 -2619px;
|
706
706
|
height: 11px;
|
707
707
|
width: 16px; }
|
708
708
|
|
@@ -717,7 +717,7 @@
|
|
717
717
|
width: 16px; }
|
718
718
|
|
719
719
|
.flag-me {
|
720
|
-
background-position: 0 -
|
720
|
+
background-position: 0 -1507px;
|
721
721
|
height: 12px;
|
722
722
|
width: 16px; }
|
723
723
|
|
@@ -742,7 +742,7 @@
|
|
742
742
|
width: 16px; }
|
743
743
|
|
744
744
|
.flag-mm {
|
745
|
-
background-position: 0 -
|
745
|
+
background-position: 0 -2267px;
|
746
746
|
height: 11px;
|
747
747
|
width: 16px; }
|
748
748
|
|
@@ -752,7 +752,7 @@
|
|
752
752
|
width: 16px; }
|
753
753
|
|
754
754
|
.flag-mo {
|
755
|
-
background-position: 0 -
|
755
|
+
background-position: 0 -759px;
|
756
756
|
height: 11px;
|
757
757
|
width: 16px; }
|
758
758
|
|
@@ -822,7 +822,7 @@
|
|
822
822
|
width: 16px; }
|
823
823
|
|
824
824
|
.flag-ne {
|
825
|
-
background-position: 0 -
|
825
|
+
background-position: 0 -1386px;
|
826
826
|
height: 11px;
|
827
827
|
width: 16px; }
|
828
828
|
|
@@ -832,7 +832,7 @@
|
|
832
832
|
width: 16px; }
|
833
833
|
|
834
834
|
.flag-ng {
|
835
|
-
background-position: 0 -
|
835
|
+
background-position: 0 -2179px;
|
836
836
|
height: 11px;
|
837
837
|
width: 16px; }
|
838
838
|
|
@@ -847,7 +847,7 @@
|
|
847
847
|
width: 16px; }
|
848
848
|
|
849
849
|
.flag-no {
|
850
|
-
background-position: 0 -
|
850
|
+
background-position: 0 -1276px;
|
851
851
|
height: 11px;
|
852
852
|
width: 16px; }
|
853
853
|
|
@@ -892,7 +892,7 @@
|
|
892
892
|
width: 16px; }
|
893
893
|
|
894
894
|
.flag-pg {
|
895
|
-
background-position: 0 -
|
895
|
+
background-position: 0 -913px;
|
896
896
|
height: 11px;
|
897
897
|
width: 16px; }
|
898
898
|
|
@@ -927,7 +927,7 @@
|
|
927
927
|
width: 16px; }
|
928
928
|
|
929
929
|
.flag-ps {
|
930
|
-
background-position: 0 -
|
930
|
+
background-position: 0 -2069px;
|
931
931
|
height: 11px;
|
932
932
|
width: 16px; }
|
933
933
|
|
@@ -937,22 +937,22 @@
|
|
937
937
|
width: 16px; }
|
938
938
|
|
939
939
|
.flag-pw {
|
940
|
-
background-position: 0 -
|
940
|
+
background-position: 0 -1012px;
|
941
941
|
height: 11px;
|
942
942
|
width: 16px; }
|
943
943
|
|
944
944
|
.flag-py {
|
945
|
-
background-position: 0 -
|
945
|
+
background-position: 0 -2124px;
|
946
946
|
height: 11px;
|
947
947
|
width: 16px; }
|
948
948
|
|
949
949
|
.flag-qa {
|
950
|
-
background-position: 0 -
|
950
|
+
background-position: 0 -2036px;
|
951
951
|
height: 11px;
|
952
952
|
width: 16px; }
|
953
953
|
|
954
954
|
.flag-re {
|
955
|
-
background-position: 0 -
|
955
|
+
background-position: 0 -1662px;
|
956
956
|
height: 11px;
|
957
957
|
width: 16px; }
|
958
958
|
|
@@ -967,12 +967,12 @@
|
|
967
967
|
width: 16px; }
|
968
968
|
|
969
969
|
.flag-ru {
|
970
|
-
background-position: 0 -
|
970
|
+
background-position: 0 -2575px;
|
971
971
|
height: 11px;
|
972
972
|
width: 16px; }
|
973
973
|
|
974
974
|
.flag-rw {
|
975
|
-
background-position: 0 -
|
975
|
+
background-position: 0 -1541px;
|
976
976
|
height: 11px;
|
977
977
|
width: 16px; }
|
978
978
|
|
@@ -997,37 +997,37 @@
|
|
997
997
|
width: 16px; }
|
998
998
|
|
999
999
|
.flag-sd {
|
1000
|
-
background-position: 0 -
|
1000
|
+
background-position: 0 -1739px;
|
1001
1001
|
height: 11px;
|
1002
1002
|
width: 16px; }
|
1003
1003
|
|
1004
1004
|
.flag-se {
|
1005
|
-
background-position: 0 -
|
1005
|
+
background-position: 0 -1463px;
|
1006
1006
|
height: 11px;
|
1007
1007
|
width: 16px; }
|
1008
1008
|
|
1009
1009
|
.flag-sg {
|
1010
|
-
background-position: 0 -
|
1010
|
+
background-position: 0 -1970px;
|
1011
1011
|
height: 11px;
|
1012
1012
|
width: 16px; }
|
1013
1013
|
|
1014
1014
|
.flag-sh {
|
1015
|
-
background-position: 0 -
|
1015
|
+
background-position: 0 -198px;
|
1016
1016
|
height: 11px;
|
1017
1017
|
width: 16px; }
|
1018
1018
|
|
1019
1019
|
.flag-si {
|
1020
|
-
background-position: 0 -
|
1020
|
+
background-position: 0 -1519px;
|
1021
1021
|
height: 11px;
|
1022
1022
|
width: 16px; }
|
1023
1023
|
|
1024
1024
|
.flag-sj {
|
1025
|
-
background-position: 0 -
|
1025
|
+
background-position: 0 -1287px;
|
1026
1026
|
height: 11px;
|
1027
1027
|
width: 16px; }
|
1028
1028
|
|
1029
1029
|
.flag-sk {
|
1030
|
-
background-position: 0 -
|
1030
|
+
background-position: 0 -902px;
|
1031
1031
|
height: 11px;
|
1032
1032
|
width: 16px; }
|
1033
1033
|
|
@@ -1042,7 +1042,7 @@
|
|
1042
1042
|
width: 16px; }
|
1043
1043
|
|
1044
1044
|
.flag-sn {
|
1045
|
-
background-position: 0 -
|
1045
|
+
background-position: 0 -1904px;
|
1046
1046
|
height: 11px;
|
1047
1047
|
width: 16px; }
|
1048
1048
|
|
@@ -1052,7 +1052,7 @@
|
|
1052
1052
|
width: 16px; }
|
1053
1053
|
|
1054
1054
|
.flag-sr {
|
1055
|
-
background-position: 0 -
|
1055
|
+
background-position: 0 -1717px;
|
1056
1056
|
height: 11px;
|
1057
1057
|
width: 16px; }
|
1058
1058
|
|
@@ -1062,7 +1062,7 @@
|
|
1062
1062
|
width: 16px; }
|
1063
1063
|
|
1064
1064
|
.flag-sv {
|
1065
|
-
background-position: 0 -
|
1065
|
+
background-position: 0 -1673px;
|
1066
1066
|
height: 11px;
|
1067
1067
|
width: 16px; }
|
1068
1068
|
|
@@ -1082,7 +1082,7 @@
|
|
1082
1082
|
width: 16px; }
|
1083
1083
|
|
1084
1084
|
.flag-td {
|
1085
|
-
background-position: 0 -
|
1085
|
+
background-position: 0 -1574px;
|
1086
1086
|
height: 11px;
|
1087
1087
|
width: 16px; }
|
1088
1088
|
|
@@ -1097,7 +1097,7 @@
|
|
1097
1097
|
width: 16px; }
|
1098
1098
|
|
1099
1099
|
.flag-th {
|
1100
|
-
background-position: 0 -
|
1100
|
+
background-position: 0 -2355px;
|
1101
1101
|
height: 11px;
|
1102
1102
|
width: 16px; }
|
1103
1103
|
|
@@ -1132,7 +1132,7 @@
|
|
1132
1132
|
width: 16px; }
|
1133
1133
|
|
1134
1134
|
.flag-tr {
|
1135
|
-
background-position: 0 -
|
1135
|
+
background-position: 0 -1750px;
|
1136
1136
|
height: 11px;
|
1137
1137
|
width: 16px; }
|
1138
1138
|
|
@@ -1172,12 +1172,12 @@
|
|
1172
1172
|
width: 16px; }
|
1173
1173
|
|
1174
1174
|
.flag-us {
|
1175
|
-
background-position: 0 -
|
1175
|
+
background-position: 0 -429px;
|
1176
1176
|
height: 11px;
|
1177
1177
|
width: 16px; }
|
1178
1178
|
|
1179
1179
|
.flag-uy {
|
1180
|
-
background-position: 0 -
|
1180
|
+
background-position: 0 -1166px;
|
1181
1181
|
height: 11px;
|
1182
1182
|
width: 16px; }
|
1183
1183
|
|
@@ -1197,7 +1197,7 @@
|
|
1197
1197
|
width: 16px; }
|
1198
1198
|
|
1199
1199
|
.flag-ve {
|
1200
|
-
background-position: 0 -
|
1200
|
+
background-position: 0 -1111px;
|
1201
1201
|
height: 11px;
|
1202
1202
|
width: 16px; }
|
1203
1203
|
|
@@ -1212,7 +1212,7 @@
|
|
1212
1212
|
width: 16px; }
|
1213
1213
|
|
1214
1214
|
.flag-vn {
|
1215
|
-
background-position: 0 -
|
1215
|
+
background-position: 0 -2399px;
|
1216
1216
|
height: 11px;
|
1217
1217
|
width: 16px; }
|
1218
1218
|
|
@@ -1227,7 +1227,7 @@
|
|
1227
1227
|
width: 16px; }
|
1228
1228
|
|
1229
1229
|
.flag-wf {
|
1230
|
-
background-position: 0 -
|
1230
|
+
background-position: 0 -924px;
|
1231
1231
|
height: 11px;
|
1232
1232
|
width: 16px; }
|
1233
1233
|
|
@@ -1242,12 +1242,12 @@
|
|
1242
1242
|
width: 16px; }
|
1243
1243
|
|
1244
1244
|
.flag-yt {
|
1245
|
-
background-position: 0 -
|
1245
|
+
background-position: 0 -715px;
|
1246
1246
|
height: 11px;
|
1247
1247
|
width: 16px; }
|
1248
1248
|
|
1249
1249
|
.flag-za {
|
1250
|
-
background-position: 0 -
|
1250
|
+
background-position: 0 -209px;
|
1251
1251
|
height: 11px;
|
1252
1252
|
width: 16px; }
|
1253
1253
|
|