mirror of
https://github.com/quantum5/uwat.cc.git
synced 2025-08-05 01:28:54 -04:00
227 lines
3.2 KiB
CSS
227 lines
3.2 KiB
CSS
|
/* Selected style from https://github.com/twbs/bootstrap (MIT-licensed) */
|
||
|
|
||
|
*,
|
||
|
*::before,
|
||
|
*::after {
|
||
|
box-sizing: border-box;
|
||
|
}
|
||
|
|
||
|
html {
|
||
|
font-family: sans-serif;
|
||
|
line-height: 1.15;
|
||
|
-webkit-text-size-adjust: 100%;
|
||
|
-ms-overflow-style: scrollbar;
|
||
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
||
|
}
|
||
|
|
||
|
@-ms-viewport {
|
||
|
width: devicłe-width;
|
||
|
}
|
||
|
|
||
|
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
|
||
|
display: block;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
margin: 0;
|
||
|
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";
|
||
|
font-size: 1rem;
|
||
|
font-weight: 400;
|
||
|
line-height: 1.5;
|
||
|
color: #212529;
|
||
|
text-align: left;
|
||
|
background-color: #fff;
|
||
|
}
|
||
|
|
||
|
[tabindex="-1"]:focus {
|
||
|
outline: 0 !important;
|
||
|
}
|
||
|
|
||
|
hr {
|
||
|
box-sizing: content-box;
|
||
|
height: 0;
|
||
|
overflow: visible;
|
||
|
}
|
||
|
|
||
|
h1, h2, h3, h4, h5, h6 {
|
||
|
margin-top: 0;
|
||
|
margin-bottom: 0.5rem;
|
||
|
}
|
||
|
|
||
|
p {
|
||
|
margin-top: 0;
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
|
||
|
ol,
|
||
|
ul,
|
||
|
dl {
|
||
|
margin-top: 0;
|
||
|
margin-bottom: 1rem;
|
||
|
}
|
||
|
|
||
|
ol ol,
|
||
|
ul ul,
|
||
|
ol ul,
|
||
|
ul ol {
|
||
|
margin-bottom: 0;
|
||
|
}
|
||
|
|
||
|
dt {
|
||
|
font-weight: 700;
|
||
|
}
|
||
|
|
||
|
dd {
|
||
|
margin-bottom: 0.5rem;
|
||
|
margin-left: 0;
|
||
|
}
|
||
|
|
||
|
blockquote {
|
||
|
margin: 0 0 1rem;
|
||
|
}
|
||
|
|
||
|
b,
|
||
|
strong {
|
||
|
font-weight: bolder;
|
||
|
}
|
||
|
|
||
|
small {
|
||
|
font-size: 80%;
|
||
|
}
|
||
|
|
||
|
sub,
|
||
|
sup {
|
||
|
position: relative;
|
||
|
font-size: 75%;
|
||
|
line-height: 0;
|
||
|
vertical-align: baseline;
|
||
|
}
|
||
|
|
||
|
sub {
|
||
|
bottom: -0.25em;
|
||
|
}
|
||
|
|
||
|
sup {
|
||
|
top: -0.5em;
|
||
|
}
|
||
|
|
||
|
a {
|
||
|
color: #007bff;
|
||
|
text-decoration: none;
|
||
|
background-color: transparent;
|
||
|
}
|
||
|
|
||
|
a:hover {
|
||
|
color: #0056b3;
|
||
|
text-decoration: underline;
|
||
|
}
|
||
|
|
||
|
a:not([href]):not([tabindex]) {
|
||
|
color: inherit;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
|
||
|
color: inherit;
|
||
|
text-decoration: none;
|
||
|
}
|
||
|
|
||
|
a:not([href]):not([tabindex]):focus {
|
||
|
outline: 0;
|
||
|
}
|
||
|
|
||
|
pre,
|
||
|
code,
|
||
|
kbd,
|
||
|
samp {
|
||
|
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
|
||
|
font-size: 1em;
|
||
|
}
|
||
|
|
||
|
pre {
|
||
|
margin-top: 0;
|
||
|
margin-bottom: 1rem;
|
||
|
overflow: auto;
|
||
|
-ms-overflow-style: scrollbar;
|
||
|
}
|
||
|
|
||
|
h1, h2, h3, h4, h5, h6,
|
||
|
.h1, .h2, .h3, .h4, .h5, .h6 {
|
||
|
margin-bottom: 0.5rem;
|
||
|
font-family: inherit;
|
||
|
font-weight: 500;
|
||
|
line-height: 1.2;
|
||
|
color: inherit;
|
||
|
}
|
||
|
|
||
|
h1, .h1 {
|
||
|
font-size: 1.75rem;
|
||
|
}
|
||
|
|
||
|
h2, .h2 {
|
||
|
font-size: 1.5rem;
|
||
|
}
|
||
|
|
||
|
h3, .h3 {
|
||
|
font-size: 1.25rem;
|
||
|
}
|
||
|
|
||
|
h4, .h4 {
|
||
|
font-size: 1rem;
|
||
|
}
|
||
|
|
||
|
@media (min-width: 576px) {
|
||
|
h1, .h1 {
|
||
|
font-size: 2rem;
|
||
|
}
|
||
|
|
||
|
h2, .h2 {
|
||
|
font-size: 1.75rem;
|
||
|
}
|
||
|
|
||
|
h3, .h3 {
|
||
|
font-size: 1.5rem;
|
||
|
}
|
||
|
|
||
|
h4, .h4 {
|
||
|
font-size: 1.25rem;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.lead {
|
||
|
font-size: 1.25rem;
|
||
|
font-weight: 300;
|
||
|
}
|
||
|
|
||
|
hr {
|
||
|
margin-top: 1rem;
|
||
|
margin-bottom: 1rem;
|
||
|
border: 0;
|
||
|
border-top: 1px solid rgba(0, 0, 0, 0.1);
|
||
|
}
|
||
|
|
||
|
small,
|
||
|
.small {
|
||
|
font-size: 80%;
|
||
|
font-weight: 400;
|
||
|
}
|
||
|
|
||
|
mark,
|
||
|
.mark {
|
||
|
padding: 0.2em;
|
||
|
background-color: #fcf8e3;
|
||
|
}
|
||
|
|
||
|
/* uwat.cf styles */
|
||
|
body {
|
||
|
padding: 1rem;
|
||
|
}
|
||
|
|
||
|
#container {
|
||
|
max-width: 576px;
|
||
|
width: -webkit-fill-available;
|
||
|
width: -webkit-fit-content;
|
||
|
width: -moz-fit-content;
|
||
|
width: fit-content;
|
||
|
margin: 0 auto;
|
||
|
}
|