quest/includes/styles.html

27 lines
452 B
HTML
Raw Normal View History

2022-07-24 14:15:32 +00:00
<style>
@media only screen and (min-width: 1200px) {
nav {
position: fixed;
top: 1rem;
left: 0;
}
}
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-27 02:41:08 +00:00
summary p {
display: inline;
}
2022-07-24 14:15:32 +00:00
</style>