quest/includes/styles.html

27 lines
458 B
HTML
Raw Normal View History

2022-07-24 08:15:32 -06:00
<style>
@media only screen and (min-width: 1200px) {
nav {
2022-09-09 13:38:43 -06:00
position: absolute;
2022-07-24 08:15:32 -06:00
top: 1rem;
2022-09-14 15:04:11 -06:00
left: 2rem;
2022-07-24 08:15:32 -06: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-07-26 20:41:08 -06:00
summary p {
display: inline;
}
2022-07-24 08:15:32 -06:00
</style>