www-lauka-net-11ty/static/css/main.css

112 lines
1.3 KiB
CSS
Raw Permalink Normal View History

2023-05-25 10:54:47 +02:00
a,
body,
h1,
h2,
h3,
html,
li,
p,
span,
strong,
u,
ul {
2022-06-22 11:02:01 +02:00
margin: 0;
padding: 0;
border: 0;
font: inherit;
vertical-align: baseline
}
body {
font-family: Consolas, monaco, monospace;
font-size: 130%;
line-height: 1.4;
margin: 3% 5%;
max-width: 50em;
background: #303030;
color: #c1c1c1;
}
ul {
list-style-type: none;
margin-left: 1rem;
}
ul>li:before {
content: "-";
position: absolute;
margin-left: -1.1rem;
}
a {
text-decoration: none;
2022-11-17 07:46:22 +01:00
color: #00cccc
2022-06-22 11:02:01 +02:00
}
2023-05-25 10:54:47 +02:00
a:hover {
text-decoration: underline;
}
2022-06-22 11:02:01 +02:00
p {
margin-bottom: .75rem
}
h1,
2022-11-16 20:49:27 +01:00
h2,
h3 {
2022-06-22 11:02:01 +02:00
line-height: 100%;
margin-top: 2rem;
margin-bottom: 1rem;
2022-11-16 20:55:52 +01:00
color: #d66388;
2022-06-22 11:02:01 +02:00
}
h1:before {
content: "# ";
2023-05-25 10:54:47 +02:00
content: "# " / "";
2022-06-22 11:02:01 +02:00
}
h1:after {
content: "-----";
2023-05-25 10:54:47 +02:00
content: "-----" / "";
2022-06-22 11:02:01 +02:00
display: block;
}
h2:before {
content: "## ";
2023-05-25 10:54:47 +02:00
content: "## " / "";
2022-06-22 11:02:01 +02:00
}
2022-11-16 20:49:27 +01:00
h3:before {
content: "### ";
2023-05-25 10:54:47 +02:00
content: "### " / "";
2022-11-16 20:49:27 +01:00
}
2022-06-22 11:02:01 +02:00
strong {
font-weight: 700;
}
strong:before {
2023-06-14 11:06:43 +02:00
content: "*";
content: "*" / "";
2022-06-22 11:02:01 +02:00
}
strong:after {
2023-06-14 11:06:43 +02:00
content: "*";
content: "*" / "";
2022-06-22 11:02:01 +02:00
}
2022-11-16 20:55:52 +01:00
strong {
color: #d66388
}
2023-05-25 10:42:40 +02:00
2023-05-25 10:54:47 +02:00
p > code, code {
font: unset;
2023-05-25 10:42:40 +02:00
font-family: Consolas, monaco, monospace;
color: cornflowerblue;
}
2023-06-14 11:06:43 +02:00
.special {
color: #c2f486;
2023-06-14 11:28:13 +02:00
font-style: normal;
2023-06-14 11:06:43 +02:00
}