Files
firestuff/include/style.css

138 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;
color: #d8d8d8;
background: black;
}
a {
color: #d8d8d8;
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%;
}
2019-04-14 17:34:34 +00:00
header {
text-align: center;
2019-04-14 17:39:46 +00:00
margin-bottom: 20px;
2019-04-14 17:34:34 +00:00
}
footer {
text-align: center;
}
2019-04-24 05:38:53 +00:00
h1, h2, h3, h4 {
font-size: 17px;
2019-04-14 17:34:34 +00:00
}
2019-04-24 06:15:42 +00:00
h1 {
color: red;
}
2019-04-14 17:34:34 +00:00
h1 a {
2019-04-24 06:15:42 +00:00
color: red;
2019-04-14 17:34:34 +00:00
text-decoration: none;
}
h2 {
font-weight: bold;
text-transform: uppercase;
2019-04-14 19:03:54 +00:00
margin-top: 0.5em;
margin-bottom: 0.5em;
2019-04-14 17:34:34 +00:00
}
h3 {
font-weight: bold;
2019-04-14 19:03:54 +00:00
margin-top: 2em;
}
h4 {
2019-04-14 17:34:34 +00:00
font-weight: normal;
}
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 {
display: block;
white-space: pre;
2019-04-21 08:11:11 +00:00
font-family: monospace, Courier;
2019-04-14 19:03:54 +00:00
font-size: 16px;
line-height: 1.3;
color: #22aa00;
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
padding: 1ch;
margin: 1ch;
overflow: scroll;
}
2019-04-24 05:38:53 +00:00
@media (max-width: 500px) {
body {
font-size: 13px;
}
code {
font-size: 13px;
}
h1, h2, h3, h4 {
font-size: 14px;
}
.index ol li {
margin-top: 15px;
margin-bottom: 15px;
}
2019-04-24 05:38:53 +00:00
}