klise 1.0.1
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 +7 -0
- data/LICENSE +21 -0
- data/README.md +59 -0
- data/_includes/anchor_headings.html +105 -0
- data/_includes/author.html +9 -0
- data/_includes/comments.html +10 -0
- data/_includes/footer.html +38 -0
- data/_includes/header.html +164 -0
- data/_includes/navbar.html +211 -0
- data/_includes/navigation.html +16 -0
- data/_includes/pagination.html +21 -0
- data/_layouts/404.html +26 -0
- data/_layouts/compress.html +4 -0
- data/_layouts/default.html +18 -0
- data/_layouts/home.html +14 -0
- data/_layouts/page.html +23 -0
- data/_layouts/post.html +74 -0
- data/_sass/klise/_base.scss +360 -0
- data/_sass/klise/_dark.scss +245 -0
- data/_sass/klise/_fonts.scss +712 -0
- data/_sass/klise/_layout.scss +371 -0
- data/_sass/klise/_miscellaneous.scss +41 -0
- data/_sass/klise/_post.scss +261 -0
- data/_sass/klise/_syntax.scss +185 -0
- data/_sass/main.scss +63 -0
- metadata +153 -0
|
@@ -0,0 +1,245 @@
|
|
|
1
|
+
body[data-theme="dark"] {
|
|
2
|
+
color: $dark-text-base-color;
|
|
3
|
+
background-color: $dark-black;
|
|
4
|
+
|
|
5
|
+
// Heading
|
|
6
|
+
h1,
|
|
7
|
+
h2,
|
|
8
|
+
h3,
|
|
9
|
+
h4,
|
|
10
|
+
h5,
|
|
11
|
+
h6 {
|
|
12
|
+
color: $dark-white;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
// Table
|
|
16
|
+
table {
|
|
17
|
+
thead {
|
|
18
|
+
color: $dark-white;
|
|
19
|
+
border-color: $dark-light;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
th,
|
|
23
|
+
td,
|
|
24
|
+
tr {
|
|
25
|
+
border-color: $dark-light;
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// Post
|
|
30
|
+
.page-content {
|
|
31
|
+
a {
|
|
32
|
+
color: $dark-text-link-blue;
|
|
33
|
+
|
|
34
|
+
&:hover,
|
|
35
|
+
&:active,
|
|
36
|
+
&:focus {
|
|
37
|
+
color: $dark-text-link-blue-active;
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
h3 {
|
|
42
|
+
border-color: $dark-light;
|
|
43
|
+
}
|
|
44
|
+
h1,
|
|
45
|
+
h2,
|
|
46
|
+
h3,
|
|
47
|
+
h4,
|
|
48
|
+
h5,
|
|
49
|
+
h6 {
|
|
50
|
+
.anchor-head {
|
|
51
|
+
color: $dark-text-link-blue;
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
// Syntax
|
|
57
|
+
code {
|
|
58
|
+
&.highlighter-rouge {
|
|
59
|
+
background-color: $dark-light;
|
|
60
|
+
}
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// kbd tag
|
|
64
|
+
kbd {
|
|
65
|
+
border-color: $dark-light;
|
|
66
|
+
color: $dark-white;
|
|
67
|
+
text-shadow: 0 1px 0 $dark-black;
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
// horizontal rule
|
|
71
|
+
hr {
|
|
72
|
+
border-color: $dark-light;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
// Post Meta
|
|
76
|
+
.post-meta {
|
|
77
|
+
color: $dark-gray;
|
|
78
|
+
|
|
79
|
+
time {
|
|
80
|
+
&::after {
|
|
81
|
+
background-color: $dark-light;
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
span[itemprop="author"] {
|
|
86
|
+
border-color: $dark-light;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// Link
|
|
91
|
+
a {
|
|
92
|
+
color: inherit;
|
|
93
|
+
text-decoration-color: $dark-smoke;
|
|
94
|
+
|
|
95
|
+
&:hover {
|
|
96
|
+
color: $dark-text-link-blue;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
&:focus {
|
|
100
|
+
outline-color: rgba(255, 82, 119, 0.6);
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// List
|
|
105
|
+
li {
|
|
106
|
+
&:before {
|
|
107
|
+
color: $dark-white;
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
// Blockquote
|
|
112
|
+
blockquote {
|
|
113
|
+
color: $dark-gray;
|
|
114
|
+
border-color: $dark-light;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
// Strong, Bold
|
|
118
|
+
strong,
|
|
119
|
+
b {
|
|
120
|
+
color: $dark-white;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// Navbar
|
|
124
|
+
.navbar {
|
|
125
|
+
border-color: $dark-light;
|
|
126
|
+
.menu {
|
|
127
|
+
a#mode {
|
|
128
|
+
.mode-sunny {
|
|
129
|
+
display: block;
|
|
130
|
+
}
|
|
131
|
+
.mode-moon {
|
|
132
|
+
display: none;
|
|
133
|
+
}
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.menu-link {
|
|
137
|
+
color: $dark-white;
|
|
138
|
+
}
|
|
139
|
+
@include media-query($on-mobile) {
|
|
140
|
+
background-color: $dark-black;
|
|
141
|
+
border-color: $dark-light;
|
|
142
|
+
|
|
143
|
+
.menu-icon {
|
|
144
|
+
> svg {
|
|
145
|
+
fill: $dark-white;
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
|
|
149
|
+
input[type="checkbox"]:checked ~ .trigger {
|
|
150
|
+
background: $dark-black;
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
// Post Item
|
|
157
|
+
.post-item {
|
|
158
|
+
&:not(:first-child) {
|
|
159
|
+
border-color: $dark-light;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.post-item-date {
|
|
163
|
+
color: $dark-white;
|
|
164
|
+
}
|
|
165
|
+
.post-item-title {
|
|
166
|
+
a {
|
|
167
|
+
color: $dark-text-base-color;
|
|
168
|
+
|
|
169
|
+
&:hover,
|
|
170
|
+
&focus {
|
|
171
|
+
color: $dark-white;
|
|
172
|
+
}
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
// Post Navigation
|
|
178
|
+
.post-nav {
|
|
179
|
+
border-color: $dark-light;
|
|
180
|
+
|
|
181
|
+
.post-nav-item {
|
|
182
|
+
font-weight: $bold-weight;
|
|
183
|
+
|
|
184
|
+
.post-title {
|
|
185
|
+
color: $dark-white;
|
|
186
|
+
opacity: 0.9;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
&:hover,
|
|
190
|
+
&:focus {
|
|
191
|
+
.post-title {
|
|
192
|
+
color: $dark-text-link-blue-active;
|
|
193
|
+
}
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
.nav-arrow {
|
|
197
|
+
color: $dark-gray;
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
@include media-query($on-mobile) {
|
|
202
|
+
.post-nav-item:nth-child(even) {
|
|
203
|
+
border-color: $dark-light;
|
|
204
|
+
}
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
|
|
208
|
+
// Footer
|
|
209
|
+
.footer {
|
|
210
|
+
span.footer_item {
|
|
211
|
+
color: $dark-white;
|
|
212
|
+
}
|
|
213
|
+
a.footer_item:not(:last-child) {
|
|
214
|
+
color: $dark-white;
|
|
215
|
+
}
|
|
216
|
+
.footer_copyright {
|
|
217
|
+
color: $dark-gray;
|
|
218
|
+
opacity: 1;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
// 404 Page
|
|
223
|
+
.not-found {
|
|
224
|
+
.title {
|
|
225
|
+
color: $dark-white;
|
|
226
|
+
text-shadow: 1px 0px 0px $dark-text-link-blue;
|
|
227
|
+
}
|
|
228
|
+
.phrase {
|
|
229
|
+
color: $dark-text-base-color;
|
|
230
|
+
}
|
|
231
|
+
.solution {
|
|
232
|
+
color: $dark-text-link-blue;
|
|
233
|
+
}
|
|
234
|
+
.solution:hover {
|
|
235
|
+
color: $dark-text-link-blue-active;
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
.search-article {
|
|
240
|
+
input[type="search"] {
|
|
241
|
+
color: $dark-text-base-color;
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
}
|
|
@@ -0,0 +1,712 @@
|
|
|
1
|
+
@charset "utf-8";
|
|
2
|
+
|
|
3
|
+
@font-face {
|
|
4
|
+
font-family: "Roboto";
|
|
5
|
+
font-style: normal;
|
|
6
|
+
font-weight: 400;
|
|
7
|
+
src: local("Roboto"), local("Roboto-Regular"),
|
|
8
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu72xKOzY.woff2)
|
|
9
|
+
format("woff2");
|
|
10
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
|
11
|
+
U+FE2E-FE2F;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@font-face {
|
|
15
|
+
font-family: "Roboto";
|
|
16
|
+
font-style: normal;
|
|
17
|
+
font-weight: 400;
|
|
18
|
+
src: local("Roboto"), local("Roboto-Regular"),
|
|
19
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu5mxKOzY.woff2)
|
|
20
|
+
format("woff2");
|
|
21
|
+
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
@font-face {
|
|
25
|
+
font-family: "Roboto";
|
|
26
|
+
font-style: normal;
|
|
27
|
+
font-weight: 400;
|
|
28
|
+
src: local("Roboto"), local("Roboto-Regular"),
|
|
29
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7mxKOzY.woff2)
|
|
30
|
+
format("woff2");
|
|
31
|
+
unicode-range: U+1F00-1FFF;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@font-face {
|
|
35
|
+
font-family: "Roboto";
|
|
36
|
+
font-style: normal;
|
|
37
|
+
font-weight: 400;
|
|
38
|
+
src: local("Roboto"), local("Roboto-Regular"),
|
|
39
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4WxKOzY.woff2)
|
|
40
|
+
format("woff2");
|
|
41
|
+
unicode-range: U+0370-03FF;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
@font-face {
|
|
45
|
+
font-family: "Roboto";
|
|
46
|
+
font-style: normal;
|
|
47
|
+
font-weight: 400;
|
|
48
|
+
src: local("Roboto"), local("Roboto-Regular"),
|
|
49
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7WxKOzY.woff2)
|
|
50
|
+
format("woff2");
|
|
51
|
+
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
@font-face {
|
|
55
|
+
font-family: "Roboto";
|
|
56
|
+
font-style: normal;
|
|
57
|
+
font-weight: 400;
|
|
58
|
+
src: local("Roboto"), local("Roboto-Regular"),
|
|
59
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu7GxKOzY.woff2)
|
|
60
|
+
format("woff2");
|
|
61
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
|
62
|
+
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@font-face {
|
|
66
|
+
font-family: "Roboto";
|
|
67
|
+
font-style: normal;
|
|
68
|
+
font-weight: 400;
|
|
69
|
+
src: local("Roboto"), local("Roboto-Regular"),
|
|
70
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxK.woff2)
|
|
71
|
+
format("woff2");
|
|
72
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
|
73
|
+
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
|
74
|
+
U+FEFF, U+FFFD;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
@font-face {
|
|
78
|
+
font-family: "Roboto";
|
|
79
|
+
font-style: normal;
|
|
80
|
+
font-weight: 700;
|
|
81
|
+
src: local("Roboto Bold"), local("Roboto-Bold"),
|
|
82
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfCRc4EsA.woff2)
|
|
83
|
+
format("woff2");
|
|
84
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
|
85
|
+
U+FE2E-FE2F;
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
@font-face {
|
|
89
|
+
font-family: "Roboto";
|
|
90
|
+
font-style: normal;
|
|
91
|
+
font-weight: 700;
|
|
92
|
+
src: local("Roboto Bold"), local("Roboto-Bold"),
|
|
93
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfABc4EsA.woff2)
|
|
94
|
+
format("woff2");
|
|
95
|
+
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
@font-face {
|
|
99
|
+
font-family: "Roboto";
|
|
100
|
+
font-style: normal;
|
|
101
|
+
font-weight: 700;
|
|
102
|
+
src: local("Roboto Bold"), local("Roboto-Bold"),
|
|
103
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfCBc4EsA.woff2)
|
|
104
|
+
format("woff2");
|
|
105
|
+
unicode-range: U+1F00-1FFF;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
@font-face {
|
|
109
|
+
font-family: "Roboto";
|
|
110
|
+
font-style: normal;
|
|
111
|
+
font-weight: 700;
|
|
112
|
+
src: local("Roboto Bold"), local("Roboto-Bold"),
|
|
113
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBxc4EsA.woff2)
|
|
114
|
+
format("woff2");
|
|
115
|
+
unicode-range: U+0370-03FF;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
@font-face {
|
|
119
|
+
font-family: "Roboto";
|
|
120
|
+
font-style: normal;
|
|
121
|
+
font-weight: 700;
|
|
122
|
+
src: local("Roboto Bold"), local("Roboto-Bold"),
|
|
123
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfCxc4EsA.woff2)
|
|
124
|
+
format("woff2");
|
|
125
|
+
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
@font-face {
|
|
129
|
+
font-family: "Roboto";
|
|
130
|
+
font-style: normal;
|
|
131
|
+
font-weight: 700;
|
|
132
|
+
src: local("Roboto Bold"), local("Roboto-Bold"),
|
|
133
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfChc4EsA.woff2)
|
|
134
|
+
format("woff2");
|
|
135
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
|
136
|
+
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
@font-face {
|
|
140
|
+
font-family: "Roboto";
|
|
141
|
+
font-style: normal;
|
|
142
|
+
font-weight: 700;
|
|
143
|
+
src: local("Roboto Bold"), local("Roboto-Bold"),
|
|
144
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc4.woff2)
|
|
145
|
+
format("woff2");
|
|
146
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
|
147
|
+
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
|
148
|
+
U+FEFF, U+FFFD;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
/* cyrillic-ext */
|
|
152
|
+
@font-face {
|
|
153
|
+
font-family: "Roboto";
|
|
154
|
+
font-style: normal;
|
|
155
|
+
font-weight: 300;
|
|
156
|
+
src: local("Roboto Light"), local("Roboto-Light"),
|
|
157
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fCRc4EsA.woff2)
|
|
158
|
+
format("woff2");
|
|
159
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
|
160
|
+
U+FE2E-FE2F;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
/* cyrillic */
|
|
164
|
+
@font-face {
|
|
165
|
+
font-family: "Roboto";
|
|
166
|
+
font-style: normal;
|
|
167
|
+
font-weight: 300;
|
|
168
|
+
src: local("Roboto Light"), local("Roboto-Light"),
|
|
169
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fABc4EsA.woff2)
|
|
170
|
+
format("woff2");
|
|
171
|
+
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
/* greek-ext */
|
|
175
|
+
@font-face {
|
|
176
|
+
font-family: "Roboto";
|
|
177
|
+
font-style: normal;
|
|
178
|
+
font-weight: 300;
|
|
179
|
+
src: local("Roboto Light"), local("Roboto-Light"),
|
|
180
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fCBc4EsA.woff2)
|
|
181
|
+
format("woff2");
|
|
182
|
+
unicode-range: U+1F00-1FFF;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
/* greek */
|
|
186
|
+
@font-face {
|
|
187
|
+
font-family: "Roboto";
|
|
188
|
+
font-style: normal;
|
|
189
|
+
font-weight: 300;
|
|
190
|
+
src: local("Roboto Light"), local("Roboto-Light"),
|
|
191
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fBxc4EsA.woff2)
|
|
192
|
+
format("woff2");
|
|
193
|
+
unicode-range: U+0370-03FF;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/* vietnamese */
|
|
197
|
+
@font-face {
|
|
198
|
+
font-family: "Roboto";
|
|
199
|
+
font-style: normal;
|
|
200
|
+
font-weight: 300;
|
|
201
|
+
src: local("Roboto Light"), local("Roboto-Light"),
|
|
202
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fCxc4EsA.woff2)
|
|
203
|
+
format("woff2");
|
|
204
|
+
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
/* latin-ext */
|
|
208
|
+
@font-face {
|
|
209
|
+
font-family: "Roboto";
|
|
210
|
+
font-style: normal;
|
|
211
|
+
font-weight: 300;
|
|
212
|
+
src: local("Roboto Light"), local("Roboto-Light"),
|
|
213
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fChc4EsA.woff2)
|
|
214
|
+
format("woff2");
|
|
215
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
|
216
|
+
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
/* latin */
|
|
220
|
+
@font-face {
|
|
221
|
+
font-family: "Roboto";
|
|
222
|
+
font-style: normal;
|
|
223
|
+
font-weight: 300;
|
|
224
|
+
src: local("Roboto Light"), local("Roboto-Light"),
|
|
225
|
+
url(https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmSU5fBBc4.woff2)
|
|
226
|
+
format("woff2");
|
|
227
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
|
228
|
+
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
|
229
|
+
U+FEFF, U+FFFD;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
/* cyrillic-ext */
|
|
233
|
+
@font-face {
|
|
234
|
+
font-family: "Source Sans Pro";
|
|
235
|
+
font-style: italic;
|
|
236
|
+
font-weight: 400;
|
|
237
|
+
font-display: swap;
|
|
238
|
+
src: local("Source Sans Pro Italic"), local("SourceSansPro-Italic"),
|
|
239
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7qsDJT9g.woff2)
|
|
240
|
+
format("woff2");
|
|
241
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
|
242
|
+
U+FE2E-FE2F;
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
/* cyrillic */
|
|
246
|
+
@font-face {
|
|
247
|
+
font-family: "Source Sans Pro";
|
|
248
|
+
font-style: italic;
|
|
249
|
+
font-weight: 400;
|
|
250
|
+
font-display: swap;
|
|
251
|
+
src: local("Source Sans Pro Italic"), local("SourceSansPro-Italic"),
|
|
252
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7jsDJT9g.woff2)
|
|
253
|
+
format("woff2");
|
|
254
|
+
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
255
|
+
}
|
|
256
|
+
|
|
257
|
+
/* greek-ext */
|
|
258
|
+
@font-face {
|
|
259
|
+
font-family: "Source Sans Pro";
|
|
260
|
+
font-style: italic;
|
|
261
|
+
font-weight: 400;
|
|
262
|
+
font-display: swap;
|
|
263
|
+
src: local("Source Sans Pro Italic"), local("SourceSansPro-Italic"),
|
|
264
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7rsDJT9g.woff2)
|
|
265
|
+
format("woff2");
|
|
266
|
+
unicode-range: U+1F00-1FFF;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
/* greek */
|
|
270
|
+
@font-face {
|
|
271
|
+
font-family: "Source Sans Pro";
|
|
272
|
+
font-style: italic;
|
|
273
|
+
font-weight: 400;
|
|
274
|
+
font-display: swap;
|
|
275
|
+
src: local("Source Sans Pro Italic"), local("SourceSansPro-Italic"),
|
|
276
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7ksDJT9g.woff2)
|
|
277
|
+
format("woff2");
|
|
278
|
+
unicode-range: U+0370-03FF;
|
|
279
|
+
}
|
|
280
|
+
|
|
281
|
+
/* vietnamese */
|
|
282
|
+
@font-face {
|
|
283
|
+
font-family: "Source Sans Pro";
|
|
284
|
+
font-style: italic;
|
|
285
|
+
font-weight: 400;
|
|
286
|
+
font-display: swap;
|
|
287
|
+
src: local("Source Sans Pro Italic"), local("SourceSansPro-Italic"),
|
|
288
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7osDJT9g.woff2)
|
|
289
|
+
format("woff2");
|
|
290
|
+
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
/* latin-ext */
|
|
294
|
+
@font-face {
|
|
295
|
+
font-family: "Source Sans Pro";
|
|
296
|
+
font-style: italic;
|
|
297
|
+
font-weight: 400;
|
|
298
|
+
font-display: swap;
|
|
299
|
+
src: local("Source Sans Pro Italic"), local("SourceSansPro-Italic"),
|
|
300
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7psDJT9g.woff2)
|
|
301
|
+
format("woff2");
|
|
302
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
|
303
|
+
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
/* latin */
|
|
307
|
+
@font-face {
|
|
308
|
+
font-family: "Source Sans Pro";
|
|
309
|
+
font-style: italic;
|
|
310
|
+
font-weight: 400;
|
|
311
|
+
font-display: swap;
|
|
312
|
+
src: local("Source Sans Pro Italic"), local("SourceSansPro-Italic"),
|
|
313
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPZ7nsDI.woff2)
|
|
314
|
+
format("woff2");
|
|
315
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
|
316
|
+
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
|
317
|
+
U+FEFF, U+FFFD;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
/* cyrillic-ext */
|
|
321
|
+
@font-face {
|
|
322
|
+
font-family: "Source Sans Pro";
|
|
323
|
+
font-style: normal;
|
|
324
|
+
font-weight: 400;
|
|
325
|
+
font-display: swap;
|
|
326
|
+
src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"),
|
|
327
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNa7lqDY.woff2)
|
|
328
|
+
format("woff2");
|
|
329
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
|
330
|
+
U+FE2E-FE2F;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
/* cyrillic */
|
|
334
|
+
@font-face {
|
|
335
|
+
font-family: "Source Sans Pro";
|
|
336
|
+
font-style: normal;
|
|
337
|
+
font-weight: 400;
|
|
338
|
+
font-display: swap;
|
|
339
|
+
src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"),
|
|
340
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qPK7lqDY.woff2)
|
|
341
|
+
format("woff2");
|
|
342
|
+
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
/* greek-ext */
|
|
346
|
+
@font-face {
|
|
347
|
+
font-family: "Source Sans Pro";
|
|
348
|
+
font-style: normal;
|
|
349
|
+
font-weight: 400;
|
|
350
|
+
font-display: swap;
|
|
351
|
+
src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"),
|
|
352
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNK7lqDY.woff2)
|
|
353
|
+
format("woff2");
|
|
354
|
+
unicode-range: U+1F00-1FFF;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
/* greek */
|
|
358
|
+
@font-face {
|
|
359
|
+
font-family: "Source Sans Pro";
|
|
360
|
+
font-style: normal;
|
|
361
|
+
font-weight: 400;
|
|
362
|
+
font-display: swap;
|
|
363
|
+
src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"),
|
|
364
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qO67lqDY.woff2)
|
|
365
|
+
format("woff2");
|
|
366
|
+
unicode-range: U+0370-03FF;
|
|
367
|
+
}
|
|
368
|
+
|
|
369
|
+
/* vietnamese */
|
|
370
|
+
@font-face {
|
|
371
|
+
font-family: "Source Sans Pro";
|
|
372
|
+
font-style: normal;
|
|
373
|
+
font-weight: 400;
|
|
374
|
+
font-display: swap;
|
|
375
|
+
src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"),
|
|
376
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qN67lqDY.woff2)
|
|
377
|
+
format("woff2");
|
|
378
|
+
unicode-range: U+0102-0103, U+0110-0111, U+1EA0-1EF9, U+20AB;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
/* latin-ext */
|
|
382
|
+
@font-face {
|
|
383
|
+
font-family: "Source Sans Pro";
|
|
384
|
+
font-style: normal;
|
|
385
|
+
font-weight: 400;
|
|
386
|
+
font-display: swap;
|
|
387
|
+
src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"),
|
|
388
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qNq7lqDY.woff2)
|
|
389
|
+
format("woff2");
|
|
390
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
|
391
|
+
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
/* latin */
|
|
395
|
+
@font-face {
|
|
396
|
+
font-family: "Source Sans Pro";
|
|
397
|
+
font-style: normal;
|
|
398
|
+
font-weight: 400;
|
|
399
|
+
font-display: swap;
|
|
400
|
+
src: local("Source Sans Pro Regular"), local("SourceSansPro-Regular"),
|
|
401
|
+
url(https://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3qOK7l.woff2)
|
|
402
|
+
format("woff2");
|
|
403
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
|
404
|
+
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
|
405
|
+
U+FEFF, U+FFFD;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
// UBUNTU MONO
|
|
409
|
+
|
|
410
|
+
/* cyrillic-ext */
|
|
411
|
+
@font-face {
|
|
412
|
+
font-family: "Ubuntu Mono";
|
|
413
|
+
font-style: italic;
|
|
414
|
+
font-weight: 400;
|
|
415
|
+
font-display: swap;
|
|
416
|
+
src: local("Ubuntu Mono Italic"), local("UbuntuMono-Italic"),
|
|
417
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFOhCneDtsqEr0keqCMhbCc_OsvSkLBP.woff2)
|
|
418
|
+
format("woff2");
|
|
419
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
|
420
|
+
U+FE2E-FE2F;
|
|
421
|
+
}
|
|
422
|
+
|
|
423
|
+
/* cyrillic */
|
|
424
|
+
@font-face {
|
|
425
|
+
font-family: "Ubuntu Mono";
|
|
426
|
+
font-style: italic;
|
|
427
|
+
font-weight: 400;
|
|
428
|
+
font-display: swap;
|
|
429
|
+
src: local("Ubuntu Mono Italic"), local("UbuntuMono-Italic"),
|
|
430
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFOhCneDtsqEr0keqCMhbCc_OsLSkLBP.woff2)
|
|
431
|
+
format("woff2");
|
|
432
|
+
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
/* greek-ext */
|
|
436
|
+
@font-face {
|
|
437
|
+
font-family: "Ubuntu Mono";
|
|
438
|
+
font-style: italic;
|
|
439
|
+
font-weight: 400;
|
|
440
|
+
font-display: swap;
|
|
441
|
+
src: local("Ubuntu Mono Italic"), local("UbuntuMono-Italic"),
|
|
442
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFOhCneDtsqEr0keqCMhbCc_OsrSkLBP.woff2)
|
|
443
|
+
format("woff2");
|
|
444
|
+
unicode-range: U+1F00-1FFF;
|
|
445
|
+
}
|
|
446
|
+
|
|
447
|
+
/* greek */
|
|
448
|
+
@font-face {
|
|
449
|
+
font-family: "Ubuntu Mono";
|
|
450
|
+
font-style: italic;
|
|
451
|
+
font-weight: 400;
|
|
452
|
+
font-display: swap;
|
|
453
|
+
src: local("Ubuntu Mono Italic"), local("UbuntuMono-Italic"),
|
|
454
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFOhCneDtsqEr0keqCMhbCc_OsXSkLBP.woff2)
|
|
455
|
+
format("woff2");
|
|
456
|
+
unicode-range: U+0370-03FF;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
/* latin-ext */
|
|
460
|
+
@font-face {
|
|
461
|
+
font-family: "Ubuntu Mono";
|
|
462
|
+
font-style: italic;
|
|
463
|
+
font-weight: 400;
|
|
464
|
+
font-display: swap;
|
|
465
|
+
src: local("Ubuntu Mono Italic"), local("UbuntuMono-Italic"),
|
|
466
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFOhCneDtsqEr0keqCMhbCc_OsjSkLBP.woff2)
|
|
467
|
+
format("woff2");
|
|
468
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
|
469
|
+
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
/* latin */
|
|
473
|
+
@font-face {
|
|
474
|
+
font-family: "Ubuntu Mono";
|
|
475
|
+
font-style: italic;
|
|
476
|
+
font-weight: 400;
|
|
477
|
+
font-display: swap;
|
|
478
|
+
src: local("Ubuntu Mono Italic"), local("UbuntuMono-Italic"),
|
|
479
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFOhCneDtsqEr0keqCMhbCc_OsbSkA.woff2)
|
|
480
|
+
format("woff2");
|
|
481
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
|
482
|
+
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
|
483
|
+
U+FEFF, U+FFFD;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
/* cyrillic-ext */
|
|
487
|
+
@font-face {
|
|
488
|
+
font-family: "Ubuntu Mono";
|
|
489
|
+
font-style: italic;
|
|
490
|
+
font-weight: 700;
|
|
491
|
+
font-display: swap;
|
|
492
|
+
src: local("Ubuntu Mono Bold Italic"), local("UbuntuMono-BoldItalic"),
|
|
493
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFO8CneDtsqEr0keqCMhbCc_Mn33hYJufkO1.woff2)
|
|
494
|
+
format("woff2");
|
|
495
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
|
496
|
+
U+FE2E-FE2F;
|
|
497
|
+
}
|
|
498
|
+
|
|
499
|
+
/* cyrillic */
|
|
500
|
+
@font-face {
|
|
501
|
+
font-family: "Ubuntu Mono";
|
|
502
|
+
font-style: italic;
|
|
503
|
+
font-weight: 700;
|
|
504
|
+
font-display: swap;
|
|
505
|
+
src: local("Ubuntu Mono Bold Italic"), local("UbuntuMono-BoldItalic"),
|
|
506
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFO8CneDtsqEr0keqCMhbCc_Mn33hYtufkO1.woff2)
|
|
507
|
+
format("woff2");
|
|
508
|
+
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
/* greek-ext */
|
|
512
|
+
@font-face {
|
|
513
|
+
font-family: "Ubuntu Mono";
|
|
514
|
+
font-style: italic;
|
|
515
|
+
font-weight: 700;
|
|
516
|
+
font-display: swap;
|
|
517
|
+
src: local("Ubuntu Mono Bold Italic"), local("UbuntuMono-BoldItalic"),
|
|
518
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFO8CneDtsqEr0keqCMhbCc_Mn33hYNufkO1.woff2)
|
|
519
|
+
format("woff2");
|
|
520
|
+
unicode-range: U+1F00-1FFF;
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
/* greek */
|
|
524
|
+
@font-face {
|
|
525
|
+
font-family: "Ubuntu Mono";
|
|
526
|
+
font-style: italic;
|
|
527
|
+
font-weight: 700;
|
|
528
|
+
font-display: swap;
|
|
529
|
+
src: local("Ubuntu Mono Bold Italic"), local("UbuntuMono-BoldItalic"),
|
|
530
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFO8CneDtsqEr0keqCMhbCc_Mn33hYxufkO1.woff2)
|
|
531
|
+
format("woff2");
|
|
532
|
+
unicode-range: U+0370-03FF;
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
/* latin-ext */
|
|
536
|
+
@font-face {
|
|
537
|
+
font-family: "Ubuntu Mono";
|
|
538
|
+
font-style: italic;
|
|
539
|
+
font-weight: 700;
|
|
540
|
+
font-display: swap;
|
|
541
|
+
src: local("Ubuntu Mono Bold Italic"), local("UbuntuMono-BoldItalic"),
|
|
542
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFO8CneDtsqEr0keqCMhbCc_Mn33hYFufkO1.woff2)
|
|
543
|
+
format("woff2");
|
|
544
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
|
545
|
+
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
546
|
+
}
|
|
547
|
+
|
|
548
|
+
/* latin */
|
|
549
|
+
@font-face {
|
|
550
|
+
font-family: "Ubuntu Mono";
|
|
551
|
+
font-style: italic;
|
|
552
|
+
font-weight: 700;
|
|
553
|
+
font-display: swap;
|
|
554
|
+
src: local("Ubuntu Mono Bold Italic"), local("UbuntuMono-BoldItalic"),
|
|
555
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFO8CneDtsqEr0keqCMhbCc_Mn33hY9ufg.woff2)
|
|
556
|
+
format("woff2");
|
|
557
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
|
558
|
+
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
|
559
|
+
U+FEFF, U+FFFD;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
/* cyrillic-ext */
|
|
563
|
+
@font-face {
|
|
564
|
+
font-family: "Ubuntu Mono";
|
|
565
|
+
font-style: normal;
|
|
566
|
+
font-weight: 400;
|
|
567
|
+
font-display: swap;
|
|
568
|
+
src: local("Ubuntu Mono"), local("UbuntuMono-Regular"),
|
|
569
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFOjCneDtsqEr0keqCMhbCc3CsTKlA.woff2)
|
|
570
|
+
format("woff2");
|
|
571
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
|
572
|
+
U+FE2E-FE2F;
|
|
573
|
+
}
|
|
574
|
+
|
|
575
|
+
/* cyrillic */
|
|
576
|
+
@font-face {
|
|
577
|
+
font-family: "Ubuntu Mono";
|
|
578
|
+
font-style: normal;
|
|
579
|
+
font-weight: 400;
|
|
580
|
+
font-display: swap;
|
|
581
|
+
src: local("Ubuntu Mono"), local("UbuntuMono-Regular"),
|
|
582
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFOjCneDtsqEr0keqCMhbCc-CsTKlA.woff2)
|
|
583
|
+
format("woff2");
|
|
584
|
+
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
/* greek-ext */
|
|
588
|
+
@font-face {
|
|
589
|
+
font-family: "Ubuntu Mono";
|
|
590
|
+
font-style: normal;
|
|
591
|
+
font-weight: 400;
|
|
592
|
+
font-display: swap;
|
|
593
|
+
src: local("Ubuntu Mono"), local("UbuntuMono-Regular"),
|
|
594
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFOjCneDtsqEr0keqCMhbCc2CsTKlA.woff2)
|
|
595
|
+
format("woff2");
|
|
596
|
+
unicode-range: U+1F00-1FFF;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
/* greek */
|
|
600
|
+
@font-face {
|
|
601
|
+
font-family: "Ubuntu Mono";
|
|
602
|
+
font-style: normal;
|
|
603
|
+
font-weight: 400;
|
|
604
|
+
font-display: swap;
|
|
605
|
+
src: local("Ubuntu Mono"), local("UbuntuMono-Regular"),
|
|
606
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFOjCneDtsqEr0keqCMhbCc5CsTKlA.woff2)
|
|
607
|
+
format("woff2");
|
|
608
|
+
unicode-range: U+0370-03FF;
|
|
609
|
+
}
|
|
610
|
+
|
|
611
|
+
/* latin-ext */
|
|
612
|
+
@font-face {
|
|
613
|
+
font-family: "Ubuntu Mono";
|
|
614
|
+
font-style: normal;
|
|
615
|
+
font-weight: 400;
|
|
616
|
+
font-display: swap;
|
|
617
|
+
src: local("Ubuntu Mono"), local("UbuntuMono-Regular"),
|
|
618
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFOjCneDtsqEr0keqCMhbCc0CsTKlA.woff2)
|
|
619
|
+
format("woff2");
|
|
620
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
|
621
|
+
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
/* latin */
|
|
625
|
+
@font-face {
|
|
626
|
+
font-family: "Ubuntu Mono";
|
|
627
|
+
font-style: normal;
|
|
628
|
+
font-weight: 400;
|
|
629
|
+
font-display: swap;
|
|
630
|
+
src: local("Ubuntu Mono"), local("UbuntuMono-Regular"),
|
|
631
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFOjCneDtsqEr0keqCMhbCc6CsQ.woff2)
|
|
632
|
+
format("woff2");
|
|
633
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
|
634
|
+
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
|
635
|
+
U+FEFF, U+FFFD;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
/* cyrillic-ext */
|
|
639
|
+
@font-face {
|
|
640
|
+
font-family: "Ubuntu Mono";
|
|
641
|
+
font-style: normal;
|
|
642
|
+
font-weight: 700;
|
|
643
|
+
font-display: swap;
|
|
644
|
+
src: local("Ubuntu Mono Bold"), local("UbuntuMono-Bold"),
|
|
645
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFO-CneDtsqEr0keqCMhbC-BL9H4tY12eg.woff2)
|
|
646
|
+
format("woff2");
|
|
647
|
+
unicode-range: U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F,
|
|
648
|
+
U+FE2E-FE2F;
|
|
649
|
+
}
|
|
650
|
+
|
|
651
|
+
/* cyrillic */
|
|
652
|
+
@font-face {
|
|
653
|
+
font-family: "Ubuntu Mono";
|
|
654
|
+
font-style: normal;
|
|
655
|
+
font-weight: 700;
|
|
656
|
+
font-display: swap;
|
|
657
|
+
src: local("Ubuntu Mono Bold"), local("UbuntuMono-Bold"),
|
|
658
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFO-CneDtsqEr0keqCMhbC-BL9HxtY12eg.woff2)
|
|
659
|
+
format("woff2");
|
|
660
|
+
unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
|
|
661
|
+
}
|
|
662
|
+
|
|
663
|
+
/* greek-ext */
|
|
664
|
+
@font-face {
|
|
665
|
+
font-family: "Ubuntu Mono";
|
|
666
|
+
font-style: normal;
|
|
667
|
+
font-weight: 700;
|
|
668
|
+
font-display: swap;
|
|
669
|
+
src: local("Ubuntu Mono Bold"), local("UbuntuMono-Bold"),
|
|
670
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFO-CneDtsqEr0keqCMhbC-BL9H5tY12eg.woff2)
|
|
671
|
+
format("woff2");
|
|
672
|
+
unicode-range: U+1F00-1FFF;
|
|
673
|
+
}
|
|
674
|
+
|
|
675
|
+
/* greek */
|
|
676
|
+
@font-face {
|
|
677
|
+
font-family: "Ubuntu Mono";
|
|
678
|
+
font-style: normal;
|
|
679
|
+
font-weight: 700;
|
|
680
|
+
font-display: swap;
|
|
681
|
+
src: local("Ubuntu Mono Bold"), local("UbuntuMono-Bold"),
|
|
682
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFO-CneDtsqEr0keqCMhbC-BL9H2tY12eg.woff2)
|
|
683
|
+
format("woff2");
|
|
684
|
+
unicode-range: U+0370-03FF;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
/* latin-ext */
|
|
688
|
+
@font-face {
|
|
689
|
+
font-family: "Ubuntu Mono";
|
|
690
|
+
font-style: normal;
|
|
691
|
+
font-weight: 700;
|
|
692
|
+
font-display: swap;
|
|
693
|
+
src: local("Ubuntu Mono Bold"), local("UbuntuMono-Bold"),
|
|
694
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFO-CneDtsqEr0keqCMhbC-BL9H7tY12eg.woff2)
|
|
695
|
+
format("woff2");
|
|
696
|
+
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB,
|
|
697
|
+
U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
|
|
698
|
+
}
|
|
699
|
+
|
|
700
|
+
/* latin */
|
|
701
|
+
@font-face {
|
|
702
|
+
font-family: "Ubuntu Mono";
|
|
703
|
+
font-style: normal;
|
|
704
|
+
font-weight: 700;
|
|
705
|
+
font-display: swap;
|
|
706
|
+
src: local("Ubuntu Mono Bold"), local("UbuntuMono-Bold"),
|
|
707
|
+
url(https://fonts.gstatic.com/s/ubuntumono/v9/KFO-CneDtsqEr0keqCMhbC-BL9H1tY0.woff2)
|
|
708
|
+
format("woff2");
|
|
709
|
+
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
|
|
710
|
+
U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
|
|
711
|
+
U+FEFF, U+FFFD;
|
|
712
|
+
}
|