quest/includes/styles.html

50 lines
868 B
HTML
Raw Normal View History

2022-07-24 14:15:32 +00:00
<style>
@media only screen and (min-width: 1200px) {
nav {
2022-09-09 19:38:43 +00:00
position: absolute;
2022-07-24 14:15:32 +00:00
top: 1rem;
2022-09-14 21:04:11 +00:00
left: 2rem;
2022-07-24 14:15:32 +00:00
}
}
2023-07-19 02:52:57 +00:00
html {
line-height: 1.5;
font-family: Georgia, serif;
font-size: 20px;
color: #1a1a1a;
background-color: #fdfdfd;
}
2022-07-24 14:15:32 +00:00
body {
padding-top: 0;
}
header {
text-align: inherit;
}
h1 {
margin: 0;
display: inline-block;
background-image: linear-gradient(to left, violet, indigo, blue, green, yellow, orange, red);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 5rem;
}
2022-10-16 22:01:17 +00:00
h2 {
font-size: 2rem;
border-bottom: solid 1px black;
margin-top: 3rem;
letter-spacing: 5px;
font-variant: small-caps;
}
h3 {
font-size: 1.6rem;
font-weight: 100;
letter-spacing: 1px;
}
2022-07-27 02:41:08 +00:00
summary p {
display: inline;
}
2023-03-02 03:52:35 +00:00
li:has(> input[checked]) {
text-decoration: line-through;
color: lightgray;
}
2022-07-24 14:15:32 +00:00
</style>