Files
firestuff/include/style.css

132 lines
1.4 KiB
CSS
Raw Normal View History

2019-04-14 05:58:37 +00:00
body {
2019-04-21 08:11:11 +00:00
font-family: monospace, Courier;
2019-04-14 06:00:53 +00:00
font-size: 16px;
2019-04-14 05:58:37 +00:00
max-width: 700px;
2019-04-14 05:58:37 +00:00
padding-left: 2ch;
padding-right: 3ch;
margin: 0 auto;
2019-04-26 01:40:22 +00:00
color: #eeeeee;
2019-04-14 05:58:37 +00:00
background: black;
}
a {
2019-04-26 01:40:22 +00:00
color: #eeeeee;
2019-04-21 08:08:19 +00:00
text-decoration: underline dotted;
2019-04-14 05:58:37 +00:00
}
2019-04-24 06:15:42 +00:00
a:hover {
color: red;
}
2019-04-14 05:58:37 +00:00
p {
text-align: justify;
}
hr {
2019-04-14 17:34:34 +00:00
width: 100%;
2019-04-14 05:58:37 +00:00
border-top: 0.1px solid white;
}
2019-04-15 00:12:07 +00:00
img {
max-width: 100%;
}
header, footer {
2019-04-14 17:34:34 +00:00
text-align: center;
margin-top: 10px;
margin-bottom: 15px;
2019-04-24 05:38:53 +00:00
font-size: 17px;
font-weight: bold;
color: red;
2019-04-14 17:34:34 +00:00
}
footer {
filter: grayscale(1.0);
2019-04-25 03:33:33 +00:00
user-select: none;
2019-04-24 06:15:42 +00:00
}
header a {
2019-04-24 06:15:42 +00:00
color: red;
2019-04-14 17:34:34 +00:00
text-decoration: none;
}
h1, h2 {
font-size: 17px;
margin-top: 25px;
2019-04-14 17:34:34 +00:00
}
h1 {
font-weight: bold;
text-transform: uppercase;
margin-top: 7px;
margin-bottom: 7px;
2019-04-14 17:34:34 +00:00
}
article {
hyphens: auto;
line-height: 1.5;
}
2019-04-14 17:34:34 +00:00
.index ol {
list-style: none;
padding: 0;
2019-04-14 05:58:37 +00:00
}
2019-04-21 08:08:19 +00:00
.index ol li {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
2019-04-21 08:08:19 +00:00
}
.index ol li a {
font-weight: bold;
text-decoration: none;
2019-04-21 08:08:19 +00:00
}
ul li, ol li {
margin-top: 6px;
margin-bottom: 6px;
}
2019-04-14 19:03:54 +00:00
code {
2019-04-21 08:11:11 +00:00
font-family: monospace, Courier;
2019-04-14 19:03:54 +00:00
font-size: 16px;
2019-04-26 01:40:22 +00:00
color: #22bb00;
2019-05-04 16:58:50 +00:00
}
pre code {
display: block;
white-space: pre;
2019-04-14 19:03:54 +00:00
2019-04-24 06:27:44 +00:00
border: 1px solid grey;
2019-04-14 19:03:54 +00:00
2019-05-04 16:58:50 +00:00
overflow: scroll;
2019-04-14 19:03:54 +00:00
padding: 1ch;
margin: 1ch;
2019-05-04 16:58:50 +00:00
line-height: 1.3;
2019-04-14 19:03:54 +00:00
}
2019-04-24 05:38:53 +00:00
@media (max-width: 500px) {
body {
font-size: 13px;
}
code {
font-size: 13px;
}
h1, h2 {
2019-04-24 05:38:53 +00:00
font-size: 14px;
}
.index ol li {
margin-top: 15px;
margin-bottom: 15px;
}
2019-04-24 05:38:53 +00:00
}