financial-assistant

Форк
0
375 строк · 6.3 Кб
1
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
2

3
/* Document
4
   ========================================================================== */
5

6
:root {
7
  font-size: 10px;
8
}
9

10
* {
11
  box-sizing: border-box;
12
}
13

14
/**
15
	 * 1. Correct the line height in all browsers.
16
	 * 2. Prevent adjustments of font size after orientation changes in iOS.
17
	 */
18

19
html {
20
  line-height: 1.15; /* 1 */
21
  -webkit-text-size-adjust: 100%; /* 2 */
22
}
23

24
/* Sections
25
		 ========================================================================== */
26

27
/**
28
	 * Remove the margin in all browsers.
29
	 */
30

31
body {
32
  margin: 0;
33
  $font-family: "Inter", sans-serif;
34
  background-color: $color-background;
35
}
36

37
/**
38
	 * Render the `main` element consistently in IE.
39
	 */
40

41
main {
42
  display: block;
43
}
44

45
li {
46
  list-style: none;
47
}
48

49
ul,
50
p,
51
h2,
52
h3 {
53
  padding: 0;
54
  margin: 0;
55
}
56

57
/**
58
	 * Correct the font size and margin on `h1` elements within `section` and
59
	 * `article` contexts in Chrome, Firefox, and Safari.
60
	 */
61

62
h1 {
63
  font-size: 3.2em;
64
  margin: 0;
65
}
66

67
/* Grouping content
68
		 ========================================================================== */
69

70
/**
71
	 * 1. Add the correct box sizing in Firefox.
72
	 * 2. Show the overflow in Edge and IE.
73
	 */
74

75
hr {
76
  box-sizing: content-box; /* 1 */
77
  height: 0; /* 1 */
78
  overflow: visible; /* 2 */
79
}
80

81
/**
82
	 * 1. Correct the inheritance and scaling of font size in all browsers.
83
	 * 2. Correct the odd `em` font sizing in all browsers.
84
	 */
85

86
pre {
87
  font-family: monospace, monospace; /* 1 */
88
  font-size: 1em; /* 2 */
89
}
90

91
/* Text-level semantics
92
		 ========================================================================== */
93

94
/**
95
	 * Remove the gray background on active links in IE 10.
96
	 */
97

98
a {
99
  background-color: transparent;
100
  text-decoration: none;
101
  color: unset;
102
}
103

104
/**
105
	 * 1. Remove the bottom border in Chrome 57-
106
	 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
107
	 */
108

109
abbr[title] {
110
  border-bottom: none; /* 1 */
111
  text-decoration: underline; /* 2 */
112
  text-decoration: underline dotted; /* 2 */
113
}
114

115
/**
116
	 * Add the correct font weight in Chrome, Edge, and Safari.
117
	 */
118

119
b,
120
strong {
121
  font-weight: bolder;
122
}
123

124
/**
125
	 * 1. Correct the inheritance and scaling of font size in all browsers.
126
	 * 2. Correct the odd `em` font sizing in all browsers.
127
	 */
128

129
code,
130
kbd,
131
samp {
132
  font-family: monospace, monospace; /* 1 */
133
  font-size: 1em; /* 2 */
134
}
135

136
/**
137
	 * Add the correct font size in all browsers.
138
	 */
139

140
small {
141
  font-size: 80%;
142
}
143

144
/**
145
	 * Prevent `sub` and `sup` elements from affecting the line height in
146
	 * all browsers.
147
	 */
148

149
sub,
150
sup {
151
  font-size: 75%;
152
  line-height: 0;
153
  position: relative;
154
  vertical-align: baseline;
155
}
156

157
sub {
158
  bottom: -0.25em;
159
}
160

161
sup {
162
  top: -0.5em;
163
}
164

165
/* Embedded content
166
		 ========================================================================== */
167

168
/**
169
	 * Remove the border on images inside links in IE 10.
170
	 */
171

172
img {
173
  border-style: none;
174
}
175

176
/* Forms
177
		 ========================================================================== */
178

179
/**
180
	 * 1. Change the font styles in all browsers.
181
	 * 2. Remove the margin in Firefox and Safari.
182
	 */
183

184
button,
185
input,
186
optgroup,
187
select,
188
textarea {
189
  font-family: inherit; /* 1 */
190
  font-size: 100%; /* 1 */
191
  line-height: 1.15; /* 1 */
192
  margin: 0; /* 2 */
193
}
194

195
/**
196
	 * Show the overflow in IE.
197
	 * 1. Show the overflow in Edge.
198
	 */
199

200
button,
201
input {
202
  /* 1 */
203
  overflow: visible;
204
}
205

206
/**
207
	 * Remove the inheritance of text transform in Edge, Firefox, and IE.
208
	 * 1. Remove the inheritance of text transform in Firefox.
209
	 */
210

211
button,
212
select {
213
  /* 1 */
214
  text-transform: none;
215
}
216

217
/**
218
	 * Correct the inability to style clickable types in iOS and Safari.
219
	 */
220

221
button,
222
[type="button"],
223
[type="reset"],
224
[type="submit"] {
225
  -webkit-appearance: button;
226
}
227

228
/**
229
	 * Remove the inner border and padding in Firefox.
230
	 */
231

232
button::-moz-focus-inner,
233
[type="button"]::-moz-focus-inner,
234
[type="reset"]::-moz-focus-inner,
235
[type="submit"]::-moz-focus-inner {
236
  border-style: none;
237
  padding: 0;
238
}
239

240
/**
241
	 * Restore the focus styles unset by the previous rule.
242
	 */
243

244
button:-moz-focusring,
245
[type="button"]:-moz-focusring,
246
[type="reset"]:-moz-focusring,
247
[type="submit"]:-moz-focusring {
248
  outline: 1px dotted ButtonText;
249
}
250

251
/**
252
	 * Correct the padding in Firefox.
253
	 */
254

255
fieldset {
256
  padding: 0.35em 0.75em 0.625em;
257
}
258

259
/**
260
	 * 1. Correct the text wrapping in Edge and IE.
261
	 * 2. Correct the color inheritance from `fieldset` elements in IE.
262
	 * 3. Remove the padding so developers are not caught out when they zero out
263
	 *    `fieldset` elements in all browsers.
264
	 */
265

266
legend {
267
  box-sizing: border-box; /* 1 */
268
  color: inherit; /* 2 */
269
  display: table; /* 1 */
270
  max-width: 100%; /* 1 */
271
  padding: 0; /* 3 */
272
  white-space: normal; /* 1 */
273
}
274

275
/**
276
	 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
277
	 */
278

279
progress {
280
  vertical-align: baseline;
281
}
282

283
/**
284
	 * Remove the default vertical scrollbar in IE 10+.
285
	 */
286

287
textarea {
288
  overflow: auto;
289
}
290

291
/**
292
	 * 1. Add the correct box sizing in IE 10.
293
	 * 2. Remove the padding in IE 10.
294
	 */
295

296
[type="checkbox"],
297
[type="radio"] {
298
  box-sizing: border-box; /* 1 */
299
  padding: 0; /* 2 */
300
}
301

302
/**
303
	 * Correct the cursor style of increment and decrement buttons in Chrome.
304
	 */
305

306
[type="number"]::-webkit-inner-spin-button,
307
[type="number"]::-webkit-outer-spin-button {
308
  height: auto;
309
}
310

311
/**
312
	 * 1. Correct the odd appearance in Chrome and Safari.
313
	 * 2. Correct the outline style in Safari.
314
	 */
315

316
[type="search"] {
317
  -webkit-appearance: textfield; /* 1 */
318
  outline-offset: -2px; /* 2 */
319
}
320

321
/**
322
	 * Remove the inner padding in Chrome and Safari on macOS.
323
	 */
324

325
[type="search"]::-webkit-search-decoration {
326
  -webkit-appearance: none;
327
}
328

329
/**
330
	 * 1. Correct the inability to style clickable types in iOS and Safari.
331
	 * 2. Change font properties to `inherit` in Safari.
332
	 */
333

334
::-webkit-file-upload-button {
335
  -webkit-appearance: button; /* 1 */
336
  font: inherit; /* 2 */
337
}
338

339
/* Interactive
340
		 ========================================================================== */
341

342
/*
343
	 * Add the correct display in Edge, IE 10+, and Firefox.
344
	 */
345

346
details {
347
  display: block;
348
}
349

350
/*
351
	 * Add the correct display in all browsers.
352
	 */
353

354
summary {
355
  display: list-item;
356
}
357

358
/* Misc
359
		 ========================================================================== */
360

361
/**
362
	 * Add the correct display in IE 10+.
363
	 */
364

365
template {
366
  display: none;
367
}
368

369
/**
370
	 * Add the correct display in IE 10.
371
	 */
372

373
[hidden] {
374
  display: none;
375
}
376

Использование cookies

Мы используем файлы cookie в соответствии с Политикой конфиденциальности и Политикой использования cookies.

Нажимая кнопку «Принимаю», Вы даете АО «СберТех» согласие на обработку Ваших персональных данных в целях совершенствования нашего веб-сайта и Сервиса GitVerse, а также повышения удобства их использования.

Запретить использование cookies Вы можете самостоятельно в настройках Вашего браузера.