api.violets-purgatory.dev/static/style.css

145 lines
2.2 KiB
CSS
Raw Normal View History

2024-02-08 12:45:32 -06:00
@font-face {
font-display: swap;
font-family: 'Rubik';
font-style: normal;
font-weight: 400;
src: url('./fonts/rubik-v28-latin-regular.woff2') format('woff2');
}
* {
font-family: 'Rubik', Verdana, Geneva, Tahoma, sans-serif;
padding: 0;
2024-02-08 17:25:10 -06:00
font-weight: 400;
2024-02-08 12:45:32 -06:00
text-align: center;
color: white;
}
body {
background-color: black;
overflow-x: hidden;
2024-02-08 18:28:33 -06:00
2024-02-08 17:52:26 -06:00
padding: 25px;
2024-02-08 17:43:23 -06:00
animation: hideContent 2.5s;
2024-02-08 12:45:32 -06:00
}
main {
opacity: 1;
animation: fadeDelay 3s cubic-bezier(0.075, 0.82, 0.165, 1);
2024-02-08 17:25:10 -06:00
width: 90%;
max-width: 1000px;
margin: auto;
2024-02-08 12:45:32 -06:00
}
2024-02-08 17:31:48 -06:00
.animatedTitle {
2024-02-08 12:45:32 -06:00
animation: mainText 3s cubic-bezier(0.075, 0.82, 0.165, 1);
margin: auto;
max-width: 75%;
2024-02-08 17:25:10 -06:00
/* outline: 1px white solid; */
}
hr {
2024-02-08 18:28:33 -06:00
border: 2px gray solid;
2024-02-08 17:25:10 -06:00
margin: 20px;
2024-02-08 12:45:32 -06:00
}
2024-02-08 18:28:33 -06:00
p {
font-size: 1.25rem;
}
#card {
background-color: rgb(75, 0, 125);
border: 2px lightgray solid;
border-radius: 15px;
max-width: 600px;
margin: auto;
}
div.sides {
display: inline-block;
width: max(20%, 175px);
padding: 0;
margin: auto;
vertical-align: middle;
}
.pfp {
width: 125px;
height: 125px;
border: 2px white solid;
border-radius: 50%;
margin: 25px;
}
h2 {
font-size: 1.8rem;
}
2024-02-08 17:25:10 -06:00
.rainDrop {
2024-02-08 16:03:40 -06:00
position: fixed;
z-index: -2;
visibility: hidden;
2024-02-08 17:25:10 -06:00
width: 4px;
height: 120px;
background: rgba(0, 0, 150, 0.5);
}
.mainTitle {
font-size: 2.75rem;
color: rgb(215, 80, 255);
display: block;
2024-02-08 17:28:17 -06:00
padding-top: 5px;
line-height: 2.2rem;
2024-02-08 17:25:10 -06:00
}
.note {
color: gray;
2024-02-08 17:28:17 -06:00
font-size: 1rem;
2024-02-08 16:03:40 -06:00
}
2024-02-08 12:45:32 -06:00
@keyframes mainText {
0% {
2024-02-08 17:52:26 -06:00
transform: translateY(calc(50vh - 6rem)) scale(1.5);
2024-02-08 12:45:32 -06:00
opacity: 0;
2024-02-08 17:25:10 -06:00
height: 4rem;
2024-02-08 12:45:32 -06:00
}
2024-02-08 16:03:40 -06:00
2024-02-08 12:45:32 -06:00
50% {
opacity: 1;
2024-02-08 17:25:10 -06:00
height: 4rem;
2024-02-08 17:52:26 -06:00
transform: translateY(calc(50vh - 6rem)) scale(1.25);
2024-02-08 12:45:32 -06:00
}
2024-02-08 16:03:40 -06:00
2024-02-08 12:45:32 -06:00
100% {
transform: translateY(0) scale(1);
}
}
@keyframes fadeDelay {
0% {
opacity: 0;
}
2024-02-08 16:03:40 -06:00
2024-02-08 12:45:32 -06:00
66% {
opacity: 0;
transform: translateY(25vh)
}
2024-02-08 16:03:40 -06:00
2024-02-08 12:45:32 -06:00
100% {
opacity: 1;
transform: none;
}
2024-02-08 17:43:23 -06:00
}
@keyframes hideContent {
0% {
overflow-y: hidden;
overflow-x: hidden;
}
100% {
overflow-y: hidden;
overflow-x: hidden;
}
2024-02-08 12:45:32 -06:00
}