simple-admin 0.2.0.pre.alpha → 1.0.0
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.
- checksums.yaml +4 -4
- data/.gitignore +0 -5
- data/Gemfile +1 -20
- data/LICENSE.txt +1 -1
- data/README.md +11 -93
- data/app/controllers/api/v1/simple_admin/base_controller.rb +6 -0
- data/app/controllers/api/v1/simple_admin/credentials_controller.rb +17 -0
- data/app/controllers/api/v1/simple_admin/entities_controller.rb +28 -0
- data/app/controllers/api/v1/simple_admin/resources_controller.rb +105 -0
- data/lib/simple-admin.rb +0 -34
- data/lib/simple_admin/engine.rb +0 -10
- data/lib/simple_admin/routes.rb +7 -12
- data/lib/simple_admin/version.rb +1 -1
- data/simple-admin.gemspec +1 -6
- metadata +8 -175
- data/.codeclimate.yml +0 -3
- data/.gitattributes +0 -1
- data/.hound.yml +0 -2
- data/.inch.yml +0 -4
- data/.rspec +0 -2
- data/.rubocop.yml +0 -68
- data/.travis.yml +0 -11
- data/CHANGELOG.md +0 -37
- data/CODE_OF_CONDUCT.md +0 -74
- data/CONTRIBUTING.md +0 -51
- data/ISSUE_TEMPLATE.md +0 -19
- data/app/assets/fonts/Simple-Line-Icons.woff +0 -0
- data/app/assets/javascripts/simple_admin/application.js +0 -18
- data/app/assets/javascripts/simple_admin/components/notification.js +0 -7
- data/app/assets/javascripts/simple_admin/components/tabs.js +0 -7
- data/app/assets/javascripts/simple_admin/components/tags.js +0 -11
- data/app/assets/stylesheets/simple_admin/application.scss +0 -48
- data/app/assets/stylesheets/simple_admin/global/buttons.css +0 -473
- data/app/assets/stylesheets/simple_admin/global/errors.css +0 -12
- data/app/assets/stylesheets/simple_admin/global/fontawesome-icons.css +0 -3024
- data/app/assets/stylesheets/simple_admin/global/fonts.css +0 -560
- data/app/assets/stylesheets/simple_admin/global/jquery.dataTables.css +0 -169
- data/app/assets/stylesheets/simple_admin/global/pagination.css +0 -11
- data/app/assets/stylesheets/simple_admin/global/reset.css +0 -197
- data/app/assets/stylesheets/simple_admin/global/simple-line-icons.css +0 -672
- data/app/assets/stylesheets/simple_admin/global/table.css +0 -214
- data/app/assets/stylesheets/simple_admin/global/tags.css +0 -87
- data/app/assets/stylesheets/simple_admin/page/aside.css +0 -324
- data/app/assets/stylesheets/simple_admin/page/header.css +0 -332
- data/app/assets/stylesheets/simple_admin/page/main-container.css +0 -222
- data/app/assets/stylesheets/simple_admin/page/sign_in.css +0 -15
- data/app/assets/stylesheets/simple_admin/tabs.css +0 -26
- data/app/controllers/simple_admin/admin/application_controller.rb +0 -21
- data/app/controllers/simple_admin/admin/search_controller.rb +0 -29
- data/app/controllers/simple_admin/admin/system/entities_controller.rb +0 -37
- data/app/controllers/simple_admin/admin/system/entity_field_types_controller.rb +0 -31
- data/app/controllers/simple_admin/admin/system/entity_fields_controller.rb +0 -20
- data/app/helpers/simple_admin_helper.rb +0 -11
- data/app/models/simple_admin/base.rb +0 -14
- data/app/models/simple_admin/entity.rb +0 -50
- data/app/models/simple_admin/entity_field.rb +0 -77
- data/app/models/simple_admin/entity_field_setting.rb +0 -5
- data/app/models/simple_admin/entity_field_type.rb +0 -77
- data/app/views/kaminari/_next_page.html.erb +0 -5
- data/app/views/kaminari/_page.html.erb +0 -3
- data/app/views/kaminari/_paginator.html.erb +0 -26
- data/app/views/kaminari/_prev_page.html.erb +0 -5
- data/app/views/layouts/simple_admin.html.erb +0 -28
- data/app/views/simple_admin/admin/resource/_form.html.erb +0 -19
- data/app/views/simple_admin/admin/resource/edit.html.erb +0 -21
- data/app/views/simple_admin/admin/resource/index.html.erb +0 -13
- data/app/views/simple_admin/admin/resource/new.html.erb +0 -21
- data/app/views/simple_admin/admin/search/index.html.erb +0 -55
- data/app/views/simple_admin/admin/shared/_aside.html.erb +0 -46
- data/app/views/simple_admin/admin/shared/_footer.html.erb +0 -5
- data/app/views/simple_admin/admin/shared/_header.html.erb +0 -7
- data/app/views/simple_admin/admin/shared/collection/_header.html.erb +0 -12
- data/app/views/simple_admin/admin/shared/collection/_table_body.html.erb +0 -29
- data/app/views/simple_admin/admin/shared/collection/_table_header.html.erb +0 -11
- data/app/views/simple_admin/admin/shared/components/_logout.html.erb +0 -6
- data/app/views/simple_admin/admin/shared/components/_search.html.erb +0 -14
- data/app/views/simple_admin/admin/shared/messages/_errors.html.erb +0 -9
- data/app/views/simple_admin/admin/shared/messages/_flash.html.erb +0 -8
- data/app/views/simple_admin/admin/system/entities/_form.html.erb +0 -32
- data/app/views/simple_admin/admin/system/entities/edit.html.erb +0 -27
- data/app/views/simple_admin/admin/system/entities/entity_fields/_form.html.erb +0 -62
- data/app/views/simple_admin/admin/system/entities/entity_fields/edit.html.erb +0 -9
- data/app/views/simple_admin/admin/system/entities/entity_fields/index.html.erb +0 -39
- data/app/views/simple_admin/admin/system/entities/entity_fields/new.html.erb +0 -12
- data/app/views/simple_admin/admin/system/entities/index.html.erb +0 -59
- data/app/views/simple_admin/admin/system/entities/new.html.erb +0 -21
- data/app/views/simple_admin/admin/system/entity_field_types/_form.html.erb +0 -21
- data/app/views/simple_admin/admin/system/entity_field_types/edit.html.erb +0 -24
- data/app/views/simple_admin/admin/system/entity_field_types/index.html.erb +0 -55
- data/app/views/simple_admin/admin/system/entity_field_types/new.html.erb +0 -21
- data/app/views/simple_admin/admin/system/entity_fields/create.js.erb +0 -18
- data/app/views/simple_admin/admin/system/entity_fields/destroy.js.erb +0 -18
- data/app/views/simple_admin/admin/system/entity_fields/update.js.erb +0 -1
- data/app/views/simple_admin/fields/boolean/_form.html.erb +0 -6
- data/app/views/simple_admin/fields/boolean/_index.html.erb +0 -5
- data/app/views/simple_admin/fields/image/_collection.html.erb +0 -5
- data/app/views/simple_admin/fields/image/_form.html.erb +0 -6
- data/app/views/simple_admin/fields/number/_collection.html.erb +0 -5
- data/app/views/simple_admin/fields/number/_form.html.erb +0 -6
- data/app/views/simple_admin/fields/password/_form.html.erb +0 -6
- data/app/views/simple_admin/fields/relation/_collection.html.erb +0 -3
- data/app/views/simple_admin/fields/relation/_form.html.erb +0 -6
- data/app/views/simple_admin/fields/select/_form.html.erb +0 -8
- data/app/views/simple_admin/fields/select/_index.html.erb +0 -5
- data/app/views/simple_admin/fields/string/_collection.html.erb +0 -3
- data/app/views/simple_admin/fields/string/_form.html.erb +0 -6
- data/app/views/simple_admin/fields/tags/_collection.html.erb +0 -3
- data/app/views/simple_admin/fields/tags/_form.html.erb +0 -6
- data/app/views/simple_admin/fields/text/_collection.html.erb +0 -3
- data/app/views/simple_admin/fields/text/_form.html.erb +0 -6
- data/codecov.yml +0 -21
- data/config/locales/en.yml +0 -37
- data/config/locales/ru.yml +0 -20
- data/lib/generators/simple_admin/install_generator.rb +0 -34
- data/lib/generators/simple_admin/migration_generator.rb +0 -24
- data/lib/generators/simple_admin/model_entities_generator.rb +0 -49
- data/lib/generators/templates/application_controller.rb +0 -20
- data/lib/generators/templates/initializers/simple_admin.rb.erb +0 -3
- data/lib/generators/templates/migrations/core_data_migration.rb +0 -12
- data/lib/generators/templates/migrations/core_migrations/entities_migration.rb +0 -13
- data/lib/generators/templates/migrations/core_migrations/entity_field_settings_migration.rb +0 -12
- data/lib/generators/templates/migrations/core_migrations/entity_field_types_migration.rb +0 -12
- data/lib/generators/templates/migrations/core_migrations/entity_fields_migration.rb +0 -18
- data/lib/generators/templates/views/devise/registrations/new.html.erb +0 -46
- data/lib/generators/templates/views/devise/sessions/new.html.erb +0 -35
- data/lib/generators/templates/views/devise/shared/_footer.html.erb +0 -3
- data/lib/simple_admin/config.rb +0 -19
- data/lib/simple_admin/helpers/boolean_helper.rb +0 -36
- data/lib/simple_admin/helpers/url_helper.rb +0 -29
- data/lib/simple_admin/refinements/boolean.rb +0 -36
- data/lib/simple_admin/resource_controller/actions_builder.rb +0 -40
- data/lib/simple_admin/resource_controller/controller_builder.rb +0 -31
- data/lib/simple_admin/resource_controller/crudify.rb +0 -111
- data/lib/simple_admin/resource_controller/crudify_dynamic_resource.rb +0 -55
- data/lib/simple_admin/resource_controller/dynamic_fields.rb +0 -53
- data/lib/simple_admin/search.rb +0 -23
- data/vendor/assets/fonts/Simple-Line-Icons.eot +0 -0
- data/vendor/assets/fonts/Simple-Line-Icons.ttf +0 -0
- data/vendor/assets/fonts/Simple-Line-Icons.woff +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.eot +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.svg +0 -2671
- data/vendor/assets/fonts/fontawesome-webfont.ttf +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.woff +0 -0
- data/vendor/assets/fonts/fontawesome-webfont.woff2 +0 -0
|
@@ -1,560 +0,0 @@
|
|
|
1
|
-
/* cyrillic-ext */
|
|
2
|
-
@font-face {
|
|
3
|
-
font-family: 'Open Sans';
|
|
4
|
-
font-style: normal;
|
|
5
|
-
font-weight: 300;
|
|
6
|
-
src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v14/DXI1ORHCpsQm3Vp6mXoaTQ7aC6SjiAOpAWOKfJDfVRY.woff2) format('woff2');
|
|
7
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
|
8
|
-
}
|
|
9
|
-
/* cyrillic */
|
|
10
|
-
@font-face {
|
|
11
|
-
font-family: 'Open Sans';
|
|
12
|
-
font-style: normal;
|
|
13
|
-
font-weight: 300;
|
|
14
|
-
src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v14/DXI1ORHCpsQm3Vp6mXoaTRdwxCXfZpKo5kWAx_74bHs.woff2) format('woff2');
|
|
15
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
16
|
-
}
|
|
17
|
-
/* greek-ext */
|
|
18
|
-
@font-face {
|
|
19
|
-
font-family: 'Open Sans';
|
|
20
|
-
font-style: normal;
|
|
21
|
-
font-weight: 300;
|
|
22
|
-
src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v14/DXI1ORHCpsQm3Vp6mXoaTZ6vnaPZw6nYDxM4SVEMFKg.woff2) format('woff2');
|
|
23
|
-
unicode-range: U+1F00-1FFF;
|
|
24
|
-
}
|
|
25
|
-
/* greek */
|
|
26
|
-
@font-face {
|
|
27
|
-
font-family: 'Open Sans';
|
|
28
|
-
font-style: normal;
|
|
29
|
-
font-weight: 300;
|
|
30
|
-
src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v14/DXI1ORHCpsQm3Vp6mXoaTfy1_HTwRwgtl1cPga3Fy3Y.woff2) format('woff2');
|
|
31
|
-
unicode-range: U+0370-03FF;
|
|
32
|
-
}
|
|
33
|
-
/* vietnamese */
|
|
34
|
-
@font-face {
|
|
35
|
-
font-family: 'Open Sans';
|
|
36
|
-
font-style: normal;
|
|
37
|
-
font-weight: 300;
|
|
38
|
-
src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v14/DXI1ORHCpsQm3Vp6mXoaTfgrLsWo7Jk1KvZser0olKY.woff2) format('woff2');
|
|
39
|
-
unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
|
|
40
|
-
}
|
|
41
|
-
/* latin-ext */
|
|
42
|
-
@font-face {
|
|
43
|
-
font-family: 'Open Sans';
|
|
44
|
-
font-style: normal;
|
|
45
|
-
font-weight: 300;
|
|
46
|
-
src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v14/DXI1ORHCpsQm3Vp6mXoaTYjoYw3YTyktCCer_ilOlhE.woff2) format('woff2');
|
|
47
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
|
48
|
-
}
|
|
49
|
-
/* latin */
|
|
50
|
-
@font-face {
|
|
51
|
-
font-family: 'Open Sans';
|
|
52
|
-
font-style: normal;
|
|
53
|
-
font-weight: 300;
|
|
54
|
-
src: local('Open Sans Light'), local('OpenSans-Light'), url(https://fonts.gstatic.com/s/opensans/v14/DXI1ORHCpsQm3Vp6mXoaTRampu5_7CjHW5spxoeN3Vs.woff2) format('woff2');
|
|
55
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
|
|
56
|
-
}
|
|
57
|
-
/* cyrillic-ext */
|
|
58
|
-
@font-face {
|
|
59
|
-
font-family: 'Open Sans';
|
|
60
|
-
font-style: normal;
|
|
61
|
-
font-weight: 400;
|
|
62
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v14/K88pR3goAWT7BTt32Z01m4X0hVgzZQUfRDuZrPvH3D8.woff2) format('woff2');
|
|
63
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
|
64
|
-
}
|
|
65
|
-
/* cyrillic */
|
|
66
|
-
@font-face {
|
|
67
|
-
font-family: 'Open Sans';
|
|
68
|
-
font-style: normal;
|
|
69
|
-
font-weight: 400;
|
|
70
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v14/RjgO7rYTmqiVp7vzi-Q5UYX0hVgzZQUfRDuZrPvH3D8.woff2) format('woff2');
|
|
71
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
72
|
-
}
|
|
73
|
-
/* greek-ext */
|
|
74
|
-
@font-face {
|
|
75
|
-
font-family: 'Open Sans';
|
|
76
|
-
font-style: normal;
|
|
77
|
-
font-weight: 400;
|
|
78
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v14/LWCjsQkB6EMdfHrEVqA1KYX0hVgzZQUfRDuZrPvH3D8.woff2) format('woff2');
|
|
79
|
-
unicode-range: U+1F00-1FFF;
|
|
80
|
-
}
|
|
81
|
-
/* greek */
|
|
82
|
-
@font-face {
|
|
83
|
-
font-family: 'Open Sans';
|
|
84
|
-
font-style: normal;
|
|
85
|
-
font-weight: 400;
|
|
86
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v14/xozscpT2726on7jbcb_pAoX0hVgzZQUfRDuZrPvH3D8.woff2) format('woff2');
|
|
87
|
-
unicode-range: U+0370-03FF;
|
|
88
|
-
}
|
|
89
|
-
/* vietnamese */
|
|
90
|
-
@font-face {
|
|
91
|
-
font-family: 'Open Sans';
|
|
92
|
-
font-style: normal;
|
|
93
|
-
font-weight: 400;
|
|
94
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v14/59ZRklaO5bWGqF5A9baEEYX0hVgzZQUfRDuZrPvH3D8.woff2) format('woff2');
|
|
95
|
-
unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
|
|
96
|
-
}
|
|
97
|
-
/* latin-ext */
|
|
98
|
-
@font-face {
|
|
99
|
-
font-family: 'Open Sans';
|
|
100
|
-
font-style: normal;
|
|
101
|
-
font-weight: 400;
|
|
102
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v14/u-WUoqrET9fUeobQW7jkRYX0hVgzZQUfRDuZrPvH3D8.woff2) format('woff2');
|
|
103
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
|
104
|
-
}
|
|
105
|
-
/* latin */
|
|
106
|
-
@font-face {
|
|
107
|
-
font-family: 'Open Sans';
|
|
108
|
-
font-style: normal;
|
|
109
|
-
font-weight: 400;
|
|
110
|
-
src: local('Open Sans Regular'), local('OpenSans-Regular'), url(https://fonts.gstatic.com/s/opensans/v14/cJZKeOuBrn4kERxqtaUH3ZBw1xU1rKptJj_0jans920.woff2) format('woff2');
|
|
111
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
|
|
112
|
-
}
|
|
113
|
-
/* cyrillic-ext */
|
|
114
|
-
@font-face {
|
|
115
|
-
font-family: 'Open Sans';
|
|
116
|
-
font-style: normal;
|
|
117
|
-
font-weight: 600;
|
|
118
|
-
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v14/MTP_ySUJH_bn48VBG8sNSg7aC6SjiAOpAWOKfJDfVRY.woff2) format('woff2');
|
|
119
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
|
120
|
-
}
|
|
121
|
-
/* cyrillic */
|
|
122
|
-
@font-face {
|
|
123
|
-
font-family: 'Open Sans';
|
|
124
|
-
font-style: normal;
|
|
125
|
-
font-weight: 600;
|
|
126
|
-
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v14/MTP_ySUJH_bn48VBG8sNShdwxCXfZpKo5kWAx_74bHs.woff2) format('woff2');
|
|
127
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
128
|
-
}
|
|
129
|
-
/* greek-ext */
|
|
130
|
-
@font-face {
|
|
131
|
-
font-family: 'Open Sans';
|
|
132
|
-
font-style: normal;
|
|
133
|
-
font-weight: 600;
|
|
134
|
-
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v14/MTP_ySUJH_bn48VBG8sNSp6vnaPZw6nYDxM4SVEMFKg.woff2) format('woff2');
|
|
135
|
-
unicode-range: U+1F00-1FFF;
|
|
136
|
-
}
|
|
137
|
-
/* greek */
|
|
138
|
-
@font-face {
|
|
139
|
-
font-family: 'Open Sans';
|
|
140
|
-
font-style: normal;
|
|
141
|
-
font-weight: 600;
|
|
142
|
-
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v14/MTP_ySUJH_bn48VBG8sNSvy1_HTwRwgtl1cPga3Fy3Y.woff2) format('woff2');
|
|
143
|
-
unicode-range: U+0370-03FF;
|
|
144
|
-
}
|
|
145
|
-
/* vietnamese */
|
|
146
|
-
@font-face {
|
|
147
|
-
font-family: 'Open Sans';
|
|
148
|
-
font-style: normal;
|
|
149
|
-
font-weight: 600;
|
|
150
|
-
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v14/MTP_ySUJH_bn48VBG8sNSvgrLsWo7Jk1KvZser0olKY.woff2) format('woff2');
|
|
151
|
-
unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
|
|
152
|
-
}
|
|
153
|
-
/* latin-ext */
|
|
154
|
-
@font-face {
|
|
155
|
-
font-family: 'Open Sans';
|
|
156
|
-
font-style: normal;
|
|
157
|
-
font-weight: 600;
|
|
158
|
-
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v14/MTP_ySUJH_bn48VBG8sNSojoYw3YTyktCCer_ilOlhE.woff2) format('woff2');
|
|
159
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
|
160
|
-
}
|
|
161
|
-
/* latin */
|
|
162
|
-
@font-face {
|
|
163
|
-
font-family: 'Open Sans';
|
|
164
|
-
font-style: normal;
|
|
165
|
-
font-weight: 600;
|
|
166
|
-
src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'), url(https://fonts.gstatic.com/s/opensans/v14/MTP_ySUJH_bn48VBG8sNShampu5_7CjHW5spxoeN3Vs.woff2) format('woff2');
|
|
167
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
|
|
168
|
-
}
|
|
169
|
-
/* cyrillic-ext */
|
|
170
|
-
@font-face {
|
|
171
|
-
font-family: 'Open Sans';
|
|
172
|
-
font-style: normal;
|
|
173
|
-
font-weight: 700;
|
|
174
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v14/k3k702ZOKiLJc3WVjuplzA7aC6SjiAOpAWOKfJDfVRY.woff2) format('woff2');
|
|
175
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
|
176
|
-
}
|
|
177
|
-
/* cyrillic */
|
|
178
|
-
@font-face {
|
|
179
|
-
font-family: 'Open Sans';
|
|
180
|
-
font-style: normal;
|
|
181
|
-
font-weight: 700;
|
|
182
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v14/k3k702ZOKiLJc3WVjuplzBdwxCXfZpKo5kWAx_74bHs.woff2) format('woff2');
|
|
183
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
184
|
-
}
|
|
185
|
-
/* greek-ext */
|
|
186
|
-
@font-face {
|
|
187
|
-
font-family: 'Open Sans';
|
|
188
|
-
font-style: normal;
|
|
189
|
-
font-weight: 700;
|
|
190
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v14/k3k702ZOKiLJc3WVjuplzJ6vnaPZw6nYDxM4SVEMFKg.woff2) format('woff2');
|
|
191
|
-
unicode-range: U+1F00-1FFF;
|
|
192
|
-
}
|
|
193
|
-
/* greek */
|
|
194
|
-
@font-face {
|
|
195
|
-
font-family: 'Open Sans';
|
|
196
|
-
font-style: normal;
|
|
197
|
-
font-weight: 700;
|
|
198
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v14/k3k702ZOKiLJc3WVjuplzPy1_HTwRwgtl1cPga3Fy3Y.woff2) format('woff2');
|
|
199
|
-
unicode-range: U+0370-03FF;
|
|
200
|
-
}
|
|
201
|
-
/* vietnamese */
|
|
202
|
-
@font-face {
|
|
203
|
-
font-family: 'Open Sans';
|
|
204
|
-
font-style: normal;
|
|
205
|
-
font-weight: 700;
|
|
206
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v14/k3k702ZOKiLJc3WVjuplzPgrLsWo7Jk1KvZser0olKY.woff2) format('woff2');
|
|
207
|
-
unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
|
|
208
|
-
}
|
|
209
|
-
/* latin-ext */
|
|
210
|
-
@font-face {
|
|
211
|
-
font-family: 'Open Sans';
|
|
212
|
-
font-style: normal;
|
|
213
|
-
font-weight: 700;
|
|
214
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v14/k3k702ZOKiLJc3WVjuplzIjoYw3YTyktCCer_ilOlhE.woff2) format('woff2');
|
|
215
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
|
216
|
-
}
|
|
217
|
-
/* latin */
|
|
218
|
-
@font-face {
|
|
219
|
-
font-family: 'Open Sans';
|
|
220
|
-
font-style: normal;
|
|
221
|
-
font-weight: 700;
|
|
222
|
-
src: local('Open Sans Bold'), local('OpenSans-Bold'), url(https://fonts.gstatic.com/s/opensans/v14/k3k702ZOKiLJc3WVjuplzBampu5_7CjHW5spxoeN3Vs.woff2) format('woff2');
|
|
223
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
|
|
224
|
-
}
|
|
225
|
-
/* cyrillic-ext */
|
|
226
|
-
@font-face {
|
|
227
|
-
font-family: 'Open Sans';
|
|
228
|
-
font-style: italic;
|
|
229
|
-
font-weight: 400;
|
|
230
|
-
src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v14/xjAJXh38I15wypJXxuGMBvZraR2Tg8w2lzm7kLNL0-w.woff2) format('woff2');
|
|
231
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
|
232
|
-
}
|
|
233
|
-
/* cyrillic */
|
|
234
|
-
@font-face {
|
|
235
|
-
font-family: 'Open Sans';
|
|
236
|
-
font-style: italic;
|
|
237
|
-
font-weight: 400;
|
|
238
|
-
src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v14/xjAJXh38I15wypJXxuGMBl4sYYdJg5dU2qzJEVSuta0.woff2) format('woff2');
|
|
239
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
240
|
-
}
|
|
241
|
-
/* greek-ext */
|
|
242
|
-
@font-face {
|
|
243
|
-
font-family: 'Open Sans';
|
|
244
|
-
font-style: italic;
|
|
245
|
-
font-weight: 400;
|
|
246
|
-
src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v14/xjAJXh38I15wypJXxuGMBlBW26QxpSj-_ZKm_xT4hWw.woff2) format('woff2');
|
|
247
|
-
unicode-range: U+1F00-1FFF;
|
|
248
|
-
}
|
|
249
|
-
/* greek */
|
|
250
|
-
@font-face {
|
|
251
|
-
font-family: 'Open Sans';
|
|
252
|
-
font-style: italic;
|
|
253
|
-
font-weight: 400;
|
|
254
|
-
src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v14/xjAJXh38I15wypJXxuGMBgt_Rm691LTebKfY2ZkKSmI.woff2) format('woff2');
|
|
255
|
-
unicode-range: U+0370-03FF;
|
|
256
|
-
}
|
|
257
|
-
/* vietnamese */
|
|
258
|
-
@font-face {
|
|
259
|
-
font-family: 'Open Sans';
|
|
260
|
-
font-style: italic;
|
|
261
|
-
font-weight: 400;
|
|
262
|
-
src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v14/xjAJXh38I15wypJXxuGMBtDiNsR5a-9Oe_Ivpu8XWlY.woff2) format('woff2');
|
|
263
|
-
unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
|
|
264
|
-
}
|
|
265
|
-
/* latin-ext */
|
|
266
|
-
@font-face {
|
|
267
|
-
font-family: 'Open Sans';
|
|
268
|
-
font-style: italic;
|
|
269
|
-
font-weight: 400;
|
|
270
|
-
src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v14/xjAJXh38I15wypJXxuGMBqE8kM4xWR1_1bYURRojRGc.woff2) format('woff2');
|
|
271
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
|
272
|
-
}
|
|
273
|
-
/* latin */
|
|
274
|
-
@font-face {
|
|
275
|
-
font-family: 'Open Sans';
|
|
276
|
-
font-style: italic;
|
|
277
|
-
font-weight: 400;
|
|
278
|
-
src: local('Open Sans Italic'), local('OpenSans-Italic'), url(https://fonts.gstatic.com/s/opensans/v14/xjAJXh38I15wypJXxuGMBogp9Q8gbYrhqGlRav_IXfk.woff2) format('woff2');
|
|
279
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
|
|
280
|
-
}
|
|
281
|
-
/* cyrillic-ext */
|
|
282
|
-
@font-face {
|
|
283
|
-
font-family: 'Source Sans Pro';
|
|
284
|
-
font-style: normal;
|
|
285
|
-
font-weight: 300;
|
|
286
|
-
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGOpKQFvsMoBH--zPuE-O8ur3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
287
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
|
288
|
-
}
|
|
289
|
-
/* cyrillic */
|
|
290
|
-
@font-face {
|
|
291
|
-
font-family: 'Source Sans Pro';
|
|
292
|
-
font-style: normal;
|
|
293
|
-
font-weight: 300;
|
|
294
|
-
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGOD5L8S_9S_m4UvyMw5M1CX3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
295
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
296
|
-
}
|
|
297
|
-
/* greek-ext */
|
|
298
|
-
@font-face {
|
|
299
|
-
font-family: 'Source Sans Pro';
|
|
300
|
-
font-style: normal;
|
|
301
|
-
font-weight: 300;
|
|
302
|
-
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGHtAKCSP8Scq_VkmNL_V6Mr3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
303
|
-
unicode-range: U+1F00-1FFF;
|
|
304
|
-
}
|
|
305
|
-
/* greek */
|
|
306
|
-
@font-face {
|
|
307
|
-
font-family: 'Source Sans Pro';
|
|
308
|
-
font-style: normal;
|
|
309
|
-
font-weight: 300;
|
|
310
|
-
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGCDuzJWrwWDT04xi-7BJnlv3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
311
|
-
unicode-range: U+0370-03FF;
|
|
312
|
-
}
|
|
313
|
-
/* vietnamese */
|
|
314
|
-
@font-face {
|
|
315
|
-
font-family: 'Source Sans Pro';
|
|
316
|
-
font-style: normal;
|
|
317
|
-
font-weight: 300;
|
|
318
|
-
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGCD5K6T8I4oZ1X3Xvlj_UeP3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
319
|
-
unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
|
|
320
|
-
}
|
|
321
|
-
/* latin-ext */
|
|
322
|
-
@font-face {
|
|
323
|
-
font-family: 'Source Sans Pro';
|
|
324
|
-
font-style: normal;
|
|
325
|
-
font-weight: 300;
|
|
326
|
-
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGDOFnJNygIkrHciC8BWzbCz3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
327
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
|
328
|
-
}
|
|
329
|
-
/* latin */
|
|
330
|
-
@font-face {
|
|
331
|
-
font-family: 'Source Sans Pro';
|
|
332
|
-
font-style: normal;
|
|
333
|
-
font-weight: 300;
|
|
334
|
-
src: local('Source Sans Pro Light'), local('SourceSansPro-Light'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGCP2LEk6lMzYsRqr3dHFImA.woff2) format('woff2');
|
|
335
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
|
|
336
|
-
}
|
|
337
|
-
/* cyrillic-ext */
|
|
338
|
-
@font-face {
|
|
339
|
-
font-family: 'Source Sans Pro';
|
|
340
|
-
font-style: normal;
|
|
341
|
-
font-weight: 400;
|
|
342
|
-
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/ODelI1aHBYDBqgeIAH2zlIXYUqYVJeq1_JtQruA3_e8.woff2) format('woff2');
|
|
343
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
|
344
|
-
}
|
|
345
|
-
/* cyrillic */
|
|
346
|
-
@font-face {
|
|
347
|
-
font-family: 'Source Sans Pro';
|
|
348
|
-
font-style: normal;
|
|
349
|
-
font-weight: 400;
|
|
350
|
-
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/ODelI1aHBYDBqgeIAH2zlExulUiGX8tUMVYeuJmbj48.woff2) format('woff2');
|
|
351
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
352
|
-
}
|
|
353
|
-
/* greek-ext */
|
|
354
|
-
@font-face {
|
|
355
|
-
font-family: 'Source Sans Pro';
|
|
356
|
-
font-style: normal;
|
|
357
|
-
font-weight: 400;
|
|
358
|
-
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/ODelI1aHBYDBqgeIAH2zlBA0E65p__AYvizJB6RduYY.woff2) format('woff2');
|
|
359
|
-
unicode-range: U+1F00-1FFF;
|
|
360
|
-
}
|
|
361
|
-
/* greek */
|
|
362
|
-
@font-face {
|
|
363
|
-
font-family: 'Source Sans Pro';
|
|
364
|
-
font-style: normal;
|
|
365
|
-
font-weight: 400;
|
|
366
|
-
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/ODelI1aHBYDBqgeIAH2zlC7-kXQoo3swP0nQ6K7J6xc.woff2) format('woff2');
|
|
367
|
-
unicode-range: U+0370-03FF;
|
|
368
|
-
}
|
|
369
|
-
/* vietnamese */
|
|
370
|
-
@font-face {
|
|
371
|
-
font-family: 'Source Sans Pro';
|
|
372
|
-
font-style: normal;
|
|
373
|
-
font-weight: 400;
|
|
374
|
-
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/ODelI1aHBYDBqgeIAH2zlCxe5Tewm2_XWfbGchcXw4g.woff2) format('woff2');
|
|
375
|
-
unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
|
|
376
|
-
}
|
|
377
|
-
/* latin-ext */
|
|
378
|
-
@font-face {
|
|
379
|
-
font-family: 'Source Sans Pro';
|
|
380
|
-
font-style: normal;
|
|
381
|
-
font-weight: 400;
|
|
382
|
-
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/ODelI1aHBYDBqgeIAH2zlIa1YDtoarzwSXxTHggEXMw.woff2) format('woff2');
|
|
383
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
|
384
|
-
}
|
|
385
|
-
/* latin */
|
|
386
|
-
@font-face {
|
|
387
|
-
font-family: 'Source Sans Pro';
|
|
388
|
-
font-style: normal;
|
|
389
|
-
font-weight: 400;
|
|
390
|
-
src: local('Source Sans Pro Regular'), local('SourceSansPro-Regular'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/ODelI1aHBYDBqgeIAH2zlJbPFduIYtoLzwST68uhz_Y.woff2) format('woff2');
|
|
391
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
|
|
392
|
-
}
|
|
393
|
-
/* cyrillic-ext */
|
|
394
|
-
@font-face {
|
|
395
|
-
font-family: 'Source Sans Pro';
|
|
396
|
-
font-style: normal;
|
|
397
|
-
font-weight: 600;
|
|
398
|
-
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGGWGG8n76xaP_JUl9houU473rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
399
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
|
400
|
-
}
|
|
401
|
-
/* cyrillic */
|
|
402
|
-
@font-face {
|
|
403
|
-
font-family: 'Source Sans Pro';
|
|
404
|
-
font-style: normal;
|
|
405
|
-
font-weight: 600;
|
|
406
|
-
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGMP5gXq4cN8pjVji5g2q9Mf3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
407
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
408
|
-
}
|
|
409
|
-
/* greek-ext */
|
|
410
|
-
@font-face {
|
|
411
|
-
font-family: 'Source Sans Pro';
|
|
412
|
-
font-style: normal;
|
|
413
|
-
font-weight: 600;
|
|
414
|
-
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGIwxT-R1rCKQkeTtsDWzfjL3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
415
|
-
unicode-range: U+1F00-1FFF;
|
|
416
|
-
}
|
|
417
|
-
/* greek */
|
|
418
|
-
@font-face {
|
|
419
|
-
font-family: 'Source Sans Pro';
|
|
420
|
-
font-style: normal;
|
|
421
|
-
font-weight: 600;
|
|
422
|
-
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGFCUBMgATkHAQY-Bv-74xcn3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
423
|
-
unicode-range: U+0370-03FF;
|
|
424
|
-
}
|
|
425
|
-
/* vietnamese */
|
|
426
|
-
@font-face {
|
|
427
|
-
font-family: 'Source Sans Pro';
|
|
428
|
-
font-style: normal;
|
|
429
|
-
font-weight: 600;
|
|
430
|
-
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGMZXFz2iDKd7GJNSaxRYiSj3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
431
|
-
unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
|
|
432
|
-
}
|
|
433
|
-
/* latin-ext */
|
|
434
|
-
@font-face {
|
|
435
|
-
font-family: 'Source Sans Pro';
|
|
436
|
-
font-style: normal;
|
|
437
|
-
font-weight: 600;
|
|
438
|
-
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGKyGJhAh-RE0BxGcd_izyev3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
439
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
|
440
|
-
}
|
|
441
|
-
/* latin */
|
|
442
|
-
@font-face {
|
|
443
|
-
font-family: 'Source Sans Pro';
|
|
444
|
-
font-style: normal;
|
|
445
|
-
font-weight: 600;
|
|
446
|
-
src: local('Source Sans Pro SemiBold'), local('SourceSansPro-SemiBold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGMzFoXZ-Kj537nB_-9jJhlA.woff2) format('woff2');
|
|
447
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
|
|
448
|
-
}
|
|
449
|
-
/* cyrillic-ext */
|
|
450
|
-
@font-face {
|
|
451
|
-
font-family: 'Source Sans Pro';
|
|
452
|
-
font-style: normal;
|
|
453
|
-
font-weight: 700;
|
|
454
|
-
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGND0m6pClgHtYGF0hfdNIEb3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
455
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
|
456
|
-
}
|
|
457
|
-
/* cyrillic */
|
|
458
|
-
@font-face {
|
|
459
|
-
font-family: 'Source Sans Pro';
|
|
460
|
-
font-style: normal;
|
|
461
|
-
font-weight: 700;
|
|
462
|
-
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGDWQv9J9PMDOEGeWOeUSzYX3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
463
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
464
|
-
}
|
|
465
|
-
/* greek-ext */
|
|
466
|
-
@font-face {
|
|
467
|
-
font-family: 'Source Sans Pro';
|
|
468
|
-
font-style: normal;
|
|
469
|
-
font-weight: 700;
|
|
470
|
-
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGIYH4VqPITzPioKTUCn5uVr3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
471
|
-
unicode-range: U+1F00-1FFF;
|
|
472
|
-
}
|
|
473
|
-
/* greek */
|
|
474
|
-
@font-face {
|
|
475
|
-
font-family: 'Source Sans Pro';
|
|
476
|
-
font-style: normal;
|
|
477
|
-
font-weight: 700;
|
|
478
|
-
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGFc7ysg-KBVARr0WVSJUyRT3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
479
|
-
unicode-range: U+0370-03FF;
|
|
480
|
-
}
|
|
481
|
-
/* vietnamese */
|
|
482
|
-
@font-face {
|
|
483
|
-
font-family: 'Source Sans Pro';
|
|
484
|
-
font-style: normal;
|
|
485
|
-
font-weight: 700;
|
|
486
|
-
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGMms7UHsIbjUxEJqIwog-i_3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
487
|
-
unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
|
|
488
|
-
}
|
|
489
|
-
/* latin-ext */
|
|
490
|
-
@font-face {
|
|
491
|
-
font-family: 'Source Sans Pro';
|
|
492
|
-
font-style: normal;
|
|
493
|
-
font-weight: 700;
|
|
494
|
-
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGO4s1Ux4PuImWPk5fSr6HPL3rGVtsTkPsbDajuO5ueQw.woff2) format('woff2');
|
|
495
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
|
496
|
-
}
|
|
497
|
-
/* latin */
|
|
498
|
-
@font-face {
|
|
499
|
-
font-family: 'Source Sans Pro';
|
|
500
|
-
font-style: normal;
|
|
501
|
-
font-weight: 700;
|
|
502
|
-
src: local('Source Sans Pro Bold'), local('SourceSansPro-Bold'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/toadOcfmlt9b38dHJxOBGJkF8H8ye47wsfpWywda8og.woff2) format('woff2');
|
|
503
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
|
|
504
|
-
}
|
|
505
|
-
/* cyrillic-ext */
|
|
506
|
-
@font-face {
|
|
507
|
-
font-family: 'Source Sans Pro';
|
|
508
|
-
font-style: italic;
|
|
509
|
-
font-weight: 400;
|
|
510
|
-
src: local('Source Sans Pro Italic'), local('SourceSansPro-Italic'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/M2Jd71oPJhLKp0zdtTvoM3BOV6_yHCuhd1fIAMM81PE.woff2) format('woff2');
|
|
511
|
-
unicode-range: U+0460-052F, U+20B4, U+2DE0-2DFF, U+A640-A69F;
|
|
512
|
-
}
|
|
513
|
-
/* cyrillic */
|
|
514
|
-
@font-face {
|
|
515
|
-
font-family: 'Source Sans Pro';
|
|
516
|
-
font-style: italic;
|
|
517
|
-
font-weight: 400;
|
|
518
|
-
src: local('Source Sans Pro Italic'), local('SourceSansPro-Italic'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/M2Jd71oPJhLKp0zdtTvoM6Qu63AEL9d8W94i2Q9pYoM.woff2) format('woff2');
|
|
519
|
-
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
520
|
-
}
|
|
521
|
-
/* greek-ext */
|
|
522
|
-
@font-face {
|
|
523
|
-
font-family: 'Source Sans Pro';
|
|
524
|
-
font-style: italic;
|
|
525
|
-
font-weight: 400;
|
|
526
|
-
src: local('Source Sans Pro Italic'), local('SourceSansPro-Italic'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/M2Jd71oPJhLKp0zdtTvoM0wgtKwzsIxdMK81soky_Q4.woff2) format('woff2');
|
|
527
|
-
unicode-range: U+1F00-1FFF;
|
|
528
|
-
}
|
|
529
|
-
/* greek */
|
|
530
|
-
@font-face {
|
|
531
|
-
font-family: 'Source Sans Pro';
|
|
532
|
-
font-style: italic;
|
|
533
|
-
font-weight: 400;
|
|
534
|
-
src: local('Source Sans Pro Italic'), local('SourceSansPro-Italic'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/M2Jd71oPJhLKp0zdtTvoM_4-bj0acN3g4VchP96UWgA.woff2) format('woff2');
|
|
535
|
-
unicode-range: U+0370-03FF;
|
|
536
|
-
}
|
|
537
|
-
/* vietnamese */
|
|
538
|
-
@font-face {
|
|
539
|
-
font-family: 'Source Sans Pro';
|
|
540
|
-
font-style: italic;
|
|
541
|
-
font-weight: 400;
|
|
542
|
-
src: local('Source Sans Pro Italic'), local('SourceSansPro-Italic'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/M2Jd71oPJhLKp0zdtTvoM-hx0s8EczIZ6Z1k6LZjTLo.woff2) format('woff2');
|
|
543
|
-
unicode-range: U+0102-0103, U+1EA0-1EF9, U+20AB;
|
|
544
|
-
}
|
|
545
|
-
/* latin-ext */
|
|
546
|
-
@font-face {
|
|
547
|
-
font-family: 'Source Sans Pro';
|
|
548
|
-
font-style: italic;
|
|
549
|
-
font-weight: 400;
|
|
550
|
-
src: local('Source Sans Pro Italic'), local('SourceSansPro-Italic'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/M2Jd71oPJhLKp0zdtTvoMyVjDpjOAxwEYJFCET2nD1s.woff2) format('woff2');
|
|
551
|
-
unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
|
|
552
|
-
}
|
|
553
|
-
/* latin */
|
|
554
|
-
@font-face {
|
|
555
|
-
font-family: 'Source Sans Pro';
|
|
556
|
-
font-style: italic;
|
|
557
|
-
font-weight: 400;
|
|
558
|
-
src: local('Source Sans Pro Italic'), local('SourceSansPro-Italic'), url(https://fonts.gstatic.com/s/sourcesanspro/v10/M2Jd71oPJhLKp0zdtTvoM2Sl3jWJ3D9poyJPMfASioc.woff2) format('woff2');
|
|
559
|
-
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
|
|
560
|
-
}
|