| 1 |
/*! |
| 2 |
* Bootstrap Reboot v4.5.0 (https://getbootstrap.com/) |
| 3 |
* Copyright 2011-2020 The Bootstrap Authors |
| 4 |
* Copyright 2011-2020 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 |
-ms-overflow-style: scrollbar; |
| 159 |
} |
| 160 |
|
| 161 |
figure { |
| 162 |
margin: 0 0 1rem; |
| 163 |
} |
| 164 |
|
| 165 |
img { |
| 166 |
vertical-align: middle; |
| 167 |
border-style: none; |
| 168 |
} |
| 169 |
|
| 170 |
svg { |
| 171 |
overflow: hidden; |
| 172 |
vertical-align: middle; |
| 173 |
} |
| 174 |
|
| 175 |
table { |
| 176 |
border-collapse: collapse; |
| 177 |
} |
| 178 |
|
| 179 |
caption { |
| 180 |
padding-top: 0.75rem; |
| 181 |
padding-bottom: 0.75rem; |
| 182 |
color: #6c757d; |
| 183 |
text-align: left; |
| 184 |
caption-side: bottom; |
| 185 |
} |
| 186 |
|
| 187 |
th { |
| 188 |
text-align: inherit; |
| 189 |
} |
| 190 |
|
| 191 |
label { |
| 192 |
display: inline-block; |
| 193 |
margin-bottom: 0.5rem; |
| 194 |
} |
| 195 |
|
| 196 |
button { |
| 197 |
border-radius: 0; |
| 198 |
} |
| 199 |
|
| 200 |
button:focus { |
| 201 |
outline: 1px dotted; |
| 202 |
outline: 5px auto -webkit-focus-ring-color; |
| 203 |
} |
| 204 |
|
| 205 |
input, |
| 206 |
button, |
| 207 |
select, |
| 208 |
optgroup, |
| 209 |
textarea { |
| 210 |
margin: 0; |
| 211 |
font-family: inherit; |
| 212 |
font-size: inherit; |
| 213 |
line-height: inherit; |
| 214 |
} |
| 215 |
|
| 216 |
button, |
| 217 |
input { |
| 218 |
overflow: visible; |
| 219 |
} |
| 220 |
|
| 221 |
button, |
| 222 |
select { |
| 223 |
text-transform: none; |
| 224 |
} |
| 225 |
|
| 226 |
[role="button"] { |
| 227 |
cursor: pointer; |
| 228 |
} |
| 229 |
|
| 230 |
select { |
| 231 |
word-wrap: normal; |
| 232 |
} |
| 233 |
|
| 234 |
button, |
| 235 |
[type="button"], |
| 236 |
[type="reset"], |
| 237 |
[type="submit"] { |
| 238 |
-webkit-appearance: button; |
| 239 |
} |
| 240 |
|
| 241 |
button:not(:disabled), |
| 242 |
[type="button"]:not(:disabled), |
| 243 |
[type="reset"]:not(:disabled), |
| 244 |
[type="submit"]:not(:disabled) { |
| 245 |
cursor: pointer; |
| 246 |
} |
| 247 |
|
| 248 |
button::-moz-focus-inner, |
| 249 |
[type="button"]::-moz-focus-inner, |
| 250 |
[type="reset"]::-moz-focus-inner, |
| 251 |
[type="submit"]::-moz-focus-inner { |
| 252 |
padding: 0; |
| 253 |
border-style: none; |
| 254 |
} |
| 255 |
|
| 256 |
input[type="radio"], |
| 257 |
input[type="checkbox"] { |
| 258 |
box-sizing: border-box; |
| 259 |
padding: 0; |
| 260 |
} |
| 261 |
|
| 262 |
textarea { |
| 263 |
overflow: auto; |
| 264 |
resize: vertical; |
| 265 |
} |
| 266 |
|
| 267 |
fieldset { |
| 268 |
min-width: 0; |
| 269 |
padding: 0; |
| 270 |
margin: 0; |
| 271 |
border: 0; |
| 272 |
} |
| 273 |
|
| 274 |
legend { |
| 275 |
display: block; |
| 276 |
width: 100%; |
| 277 |
max-width: 100%; |
| 278 |
padding: 0; |
| 279 |
margin-bottom: .5rem; |
| 280 |
font-size: 1.5rem; |
| 281 |
line-height: inherit; |
| 282 |
color: inherit; |
| 283 |
white-space: normal; |
| 284 |
} |
| 285 |
|
| 286 |
progress { |
| 287 |
vertical-align: baseline; |
| 288 |
} |
| 289 |
|
| 290 |
[type="number"]::-webkit-inner-spin-button, |
| 291 |
[type="number"]::-webkit-outer-spin-button { |
| 292 |
height: auto; |
| 293 |
} |
| 294 |
|
| 295 |
[type="search"] { |
| 296 |
outline-offset: -2px; |
| 297 |
-webkit-appearance: none; |
| 298 |
} |
| 299 |
|
| 300 |
[type="search"]::-webkit-search-decoration { |
| 301 |
-webkit-appearance: none; |
| 302 |
} |
| 303 |
|
| 304 |
::-webkit-file-upload-button { |
| 305 |
font: inherit; |
| 306 |
-webkit-appearance: button; |
| 307 |
} |
| 308 |
|
| 309 |
output { |
| 310 |
display: inline-block; |
| 311 |
} |
| 312 |
|
| 313 |
summary { |
| 314 |
display: list-item; |
| 315 |
cursor: pointer; |
| 316 |
} |
| 317 |
|
| 318 |
template { |
| 319 |
display: none; |
| 320 |
} |
| 321 |
|
| 322 |
[hidden] { |
| 323 |
display: none !important; |
| 324 |
} |
| 325 |
/*# sourceMappingURL=bootstrap-reboot.css.map */ |