also actually ~3 month ago i added the rainbow text and tweaked minor things
This commit is contained in:
parent
fef113c769
commit
8a49bb109a
1 changed files with 36 additions and 6 deletions
|
@ -39,6 +39,11 @@ body {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
h1, h2, h3, h4, h5, h6 {
|
||||||
|
line-height: 1em;
|
||||||
|
margin: .8em 0;
|
||||||
|
}
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: var(--text);
|
color: var(--text);
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
|
@ -60,11 +65,14 @@ pre {
|
||||||
padding: 10px 15px;
|
padding: 10px 15px;
|
||||||
}
|
}
|
||||||
|
|
||||||
p img {
|
p {
|
||||||
border: 2px solid var(--border);
|
hyphens: auto;
|
||||||
border-radius: 4px;
|
img {
|
||||||
display: block;
|
border: 2px solid var(--border);
|
||||||
margin: 0 auto;
|
border-radius: 4px;
|
||||||
|
display: block;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
hr {
|
hr {
|
||||||
|
@ -133,8 +141,24 @@ main {
|
||||||
span { font-size: .8em; }
|
span { font-size: .8em; }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#vris-cute-corner {
|
||||||
|
animation: rainbow-swoosh;
|
||||||
|
animation-duration: 30000s;
|
||||||
|
animation-iteration-count: infinite;
|
||||||
|
background-image: linear-gradient(135deg, #c940f9 14.29%, #ff1e00 14.29%, #ff1e00 28.57%, #ffa500 28.57%, #ffa500 42.86%, #ffe047 42.86%, #ffe047 57.14%, #67dc91 57.14%, #67dc91 71.43%, #67a1ed 71.43%, #67a1ed 85.71%, #c940f9 85.71%);
|
||||||
|
background-clip: text;
|
||||||
|
-webkit-background-clip: text;
|
||||||
|
color: transparent;
|
||||||
|
display: inline-block;
|
||||||
|
margin: 0.55em 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
span[title="Freude"], span[title="happiness"] {
|
||||||
|
font-size: 1em;
|
||||||
|
}
|
||||||
|
|
||||||
p.date-published {
|
p.date-published {
|
||||||
margin-bottom: -30px;
|
margin-bottom: -1.5em;
|
||||||
font-size: smaller;
|
font-size: smaller;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
@ -144,3 +168,9 @@ p.date-published {
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@keyframes rainbow-swoosh {
|
||||||
|
0% { background-position-x: 0px; }
|
||||||
|
50% { background-position-x: 999999px; }
|
||||||
|
100% { background-position-x: 0px; }
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue