File size: 1,240 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 |
body {
font-family:
Gordita, Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
sans-serif;
line-height: 1.5;
}
a {
margin-right: 1rem;
}
main {
text-align: center;
padding: 1em;
margin: 0 auto;
}
h1 {
color: #335d92;
text-transform: uppercase;
font-size: 2.5rem;
font-weight: 100;
line-height: 1.1;
margin: 2.5rem auto 0 auto;
max-width: 14rem;
}
p {
max-width: 14rem;
margin: 1rem auto;
line-height: 1.35;
}
@media (min-width: 480px) {
h1 {
max-width: none;
}
p {
max-width: none;
}
}
.loader {
color: #888;
margin-top: 1rem;
}
.error {
color: red;
margin-top: 1rem;
}
.description {
max-width: 60rem;
margin: 3rem auto;
}
.description p {
line-height: 1.5;
}
.description *:not(:first-child) {
margin-top: 1rem;
}
.description_img {
max-width: 100%;
border-radius: 4px;
}
.example {
border: 1px solid #ddd;
padding: 1rem;
max-width: 50rem;
text-align: left;
margin: 1rem auto;
}
.example__header {
display: flex;
}
.example__title {
font-size: 1rem;
font-weight: bold;
flex-grow: 1;
}
.example--table {
padding: 0.5rem;
}
.example--table th,
.example--table td {
padding: 4px 12px;
white-space: nowrap;
}
|