Restore about.html

This commit is contained in:
Emilia Allison 2022-09-29 23:25:55 -04:00
parent 590d7aa9ab
commit 6abb6a6187
Signed by: emilia
GPG Key ID: 7A3F8997BFE894E0
4 changed files with 41 additions and 5 deletions

View File

@ -6,10 +6,10 @@
<meta name="viewport" content="width=device-width,initial-scale=1">
</head>
<body>
<div class="overlay">
<div id="overlay">
</div>
<div class="outerdiv contentholder">
<div class="contentholder__topfiller"></div>
<main class="grid-center--offset">
<div>
<div class="content">
<h1>
About
@ -44,6 +44,7 @@ linux distros don't matter
<li>my taste in music is objectively just ok</li>
<li>&#129424</li>
</div>
</div>
</div>
</main>
</body>
</html>

1
src/scss/about.scss Normal file
View File

@ -0,0 +1 @@
@import "ilia1";

View File

@ -188,3 +188,37 @@ footer {
background-image: url('../img/noise.gif');
background-size: 25%;
}
/* Animations */
// GRADIENTS (you might need them!)
$rainbow-gradient: repeating-linear-gradient(to left, red, violet, indigo, blue, green, yellow, orange, red, violet);
// ANIMATIONS (love to see them)
@keyframes gradient-bg {
from {
background-position: 0%;
}
to {
background-position: 100%;
}
}
@mixin rainbow-text() {
animation: gradient-bg 4s linear infinite;
}
// MARKS
mark.rainbow {
background-image: $rainbow-gradient;
background-size: 1000% 1000%;
color: transparent;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
@include rainbow-text();
}
// ALIASES
mark.internet {
@extend .rainbow;
font-weight: bold;
}

View File

@ -1,4 +1,4 @@
@import 'ilia1';
@import "ilia1";
footer {
@extend .row;