Projekt

Obecné

Profil

Stáhnout (4.68 KB) Statistiky
| Větev: | Revize:
1
/*!
2
 * Bootstrap Reboot v4.4.1 (https://getbootstrap.com/)
3
 * Copyright 2011-2019 The Bootstrap Authors
4
 * Copyright 2011-2019 Twitter, Inc.
5
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
6
 * Forked from Normalize.css, licensed MIT (https://github.com/necolas/normalize.css/blob/master/LICENSE.md)
7
 */
8
*,
9
*::before,
10
*::after {
11
  box-sizing: border-box;
12
}
13

    
14
html {
15
  font-family: sans-serif;
16
  line-height: 1.15;
17
  -webkit-text-size-adjust: 100%;
18
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
19
}
20

    
21
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
22
  display: block;
23
}
24

    
25
body {
26
  margin: 0;
27
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
28
  font-size: 1rem;
29
  font-weight: 400;
30
  line-height: 1.5;
31
  color: #212529;
32
  text-align: left;
33
  background-color: #fff;
34
}
35

    
36
[tabindex="-1"]:focus:not(:focus-visible) {
37
  outline: 0 !important;
38
}
39

    
40
hr {
41
  box-sizing: content-box;
42
  height: 0;
43
  overflow: visible;
44
}
45

    
46
h1, h2, h3, h4, h5, h6 {
47
  margin-top: 0;
48
  margin-bottom: 0.5rem;
49
}
50

    
51
p {
52
  margin-top: 0;
53
  margin-bottom: 1rem;
54
}
55

    
56
abbr[title],
57
abbr[data-original-title] {
58
  text-decoration: underline;
59
  -webkit-text-decoration: underline dotted;
60
  text-decoration: underline dotted;
61
  cursor: help;
62
  border-bottom: 0;
63
  -webkit-text-decoration-skip-ink: none;
64
  text-decoration-skip-ink: none;
65
}
66

    
67
address {
68
  margin-bottom: 1rem;
69
  font-style: normal;
70
  line-height: inherit;
71
}
72

    
73
ol,
74
ul,
75
dl {
76
  margin-top: 0;
77
  margin-bottom: 1rem;
78
}
79

    
80
ol ol,
81
ul ul,
82
ol ul,
83
ul ol {
84
  margin-bottom: 0;
85
}
86

    
87
dt {
88
  font-weight: 700;
89
}
90

    
91
dd {
92
  margin-bottom: .5rem;
93
  margin-left: 0;
94
}
95

    
96
blockquote {
97
  margin: 0 0 1rem;
98
}
99

    
100
b,
101
strong {
102
  font-weight: bolder;
103
}
104

    
105
small {
106
  font-size: 80%;
107
}
108

    
109
sub,
110
sup {
111
  position: relative;
112
  font-size: 75%;
113
  line-height: 0;
114
  vertical-align: baseline;
115
}
116

    
117
sub {
118
  bottom: -.25em;
119
}
120

    
121
sup {
122
  top: -.5em;
123
}
124

    
125
a {
126
  color: #007bff;
127
  text-decoration: none;
128
  background-color: transparent;
129
}
130

    
131
a:hover {
132
  color: #0056b3;
133
  text-decoration: underline;
134
}
135

    
136
a:not([href]) {
137
  color: inherit;
138
  text-decoration: none;
139
}
140

    
141
a:not([href]):hover {
142
  color: inherit;
143
  text-decoration: none;
144
}
145

    
146
pre,
147
code,
148
kbd,
149
samp {
150
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
151
  font-size: 1em;
152
}
153

    
154
pre {
155
  margin-top: 0;
156
  margin-bottom: 1rem;
157
  overflow: auto;
158
}
159

    
160
figure {
161
  margin: 0 0 1rem;
162
}
163

    
164
img {
165
  vertical-align: middle;
166
  border-style: none;
167
}
168

    
169
svg {
170
  overflow: hidden;
171
  vertical-align: middle;
172
}
173

    
174
table {
175
  border-collapse: collapse;
176
}
177

    
178
caption {
179
  padding-top: 0.75rem;
180
  padding-bottom: 0.75rem;
181
  color: #6c757d;
182
  text-align: left;
183
  caption-side: bottom;
184
}
185

    
186
th {
187
  text-align: inherit;
188
}
189

    
190
label {
191
  display: inline-block;
192
  margin-bottom: 0.5rem;
193
}
194

    
195
button {
196
  border-radius: 0;
197
}
198

    
199
button:focus {
200
  outline: 1px dotted;
201
  outline: 5px auto -webkit-focus-ring-color;
202
}
203

    
204
input,
205
button,
206
select,
207
optgroup,
208
textarea {
209
  margin: 0;
210
  font-family: inherit;
211
  font-size: inherit;
212
  line-height: inherit;
213
}
214

    
215
button,
216
input {
217
  overflow: visible;
218
}
219

    
220
button,
221
select {
222
  text-transform: none;
223
}
224

    
225
select {
226
  word-wrap: normal;
227
}
228

    
229
button,
230
[type="button"],
231
[type="reset"],
232
[type="submit"] {
233
  -webkit-appearance: button;
234
}
235

    
236
button:not(:disabled),
237
[type="button"]:not(:disabled),
238
[type="reset"]:not(:disabled),
239
[type="submit"]:not(:disabled) {
240
  cursor: pointer;
241
}
242

    
243
button::-moz-focus-inner,
244
[type="button"]::-moz-focus-inner,
245
[type="reset"]::-moz-focus-inner,
246
[type="submit"]::-moz-focus-inner {
247
  padding: 0;
248
  border-style: none;
249
}
250

    
251
input[type="radio"],
252
input[type="checkbox"] {
253
  box-sizing: border-box;
254
  padding: 0;
255
}
256

    
257
input[type="date"],
258
input[type="time"],
259
input[type="datetime-local"],
260
input[type="month"] {
261
  -webkit-appearance: listbox;
262
}
263

    
264
textarea {
265
  overflow: auto;
266
  resize: vertical;
267
}
268

    
269
fieldset {
270
  min-width: 0;
271
  padding: 0;
272
  margin: 0;
273
  border: 0;
274
}
275

    
276
legend {
277
  display: block;
278
  width: 100%;
279
  max-width: 100%;
280
  padding: 0;
281
  margin-bottom: .5rem;
282
  font-size: 1.5rem;
283
  line-height: inherit;
284
  color: inherit;
285
  white-space: normal;
286
}
287

    
288
progress {
289
  vertical-align: baseline;
290
}
291

    
292
[type="number"]::-webkit-inner-spin-button,
293
[type="number"]::-webkit-outer-spin-button {
294
  height: auto;
295
}
296

    
297
[type="search"] {
298
  outline-offset: -2px;
299
  -webkit-appearance: none;
300
}
301

    
302
[type="search"]::-webkit-search-decoration {
303
  -webkit-appearance: none;
304
}
305

    
306
::-webkit-file-upload-button {
307
  font: inherit;
308
  -webkit-appearance: button;
309
}
310

    
311
output {
312
  display: inline-block;
313
}
314

    
315
summary {
316
  display: list-item;
317
  cursor: pointer;
318
}
319

    
320
template {
321
  display: none;
322
}
323

    
324
[hidden] {
325
  display: none !important;
326
}
327
/*# sourceMappingURL=bootstrap-reboot.css.map */
(5-5/15)