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

204 lines
3.1 KiB
CSS
Raw Normal View History

@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
@import url('https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css');
2023-11-16 20:56:07 -06:00
* {
font-family: 'Rubik', Verdana, Geneva, Tahoma, sans-serif;
padding: 0;
text-align: center;
2023-11-16 20:56:07 -06:00
line-height: 1.5rem;
}
h1 {
color: rgb(225, 215, 255);
font-size: 2.5rem;
}
h2 {
color: white;
}
2023-11-07 15:04:48 -06:00
body, html {
2023-11-09 17:54:05 -06:00
overflow-x: hidden;
margin: auto;
2023-11-09 20:56:11 -06:00
background-color: rgb(20, 5, 60);
2023-11-16 20:56:07 -06:00
background: linear-gradient(rgb(25, 5, 75), black);
2023-11-07 14:40:43 -06:00
width: 100vw;
height: 100vh;
2023-11-07 15:04:48 -06:00
margin: 0;
padding: 0;
2023-11-07 13:00:16 -06:00
}
2023-10-22 12:16:47 -05:00
2023-11-16 20:56:07 -06:00
body {
2023-11-18 21:55:50 -06:00
padding: 2.5%;
2023-11-16 20:56:07 -06:00
}
2023-11-07 14:40:43 -06:00
.fadediv {
2023-11-07 13:00:16 -06:00
animation-name: fade-in;
animation-duration: .75s;
animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
2023-11-18 21:53:13 -06:00
margin: auto;
max-width: 1000px;
}
a {
2023-11-09 20:56:11 -06:00
color: rgb(175, 225, 255);
text-decoration: none;
display: inline-block;
transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.chip {
font-size: 1.3rem;
2023-11-03 20:12:37 -05:00
border: 2px gray solid;
2023-11-16 22:00:16 -06:00
border-radius: 6px;
background-color: black;
2023-11-03 20:12:37 -05:00
padding: 8px;
margin: 3px;
display: inline-block;
transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
2023-11-07 14:48:35 -06:00
transform: scale(0.95)
}
.chip:hover {
2023-10-22 16:34:09 -05:00
/* background-color: rgb(20, 10, 30); */
2023-11-07 14:48:35 -06:00
transform: scale(1);
/* font-size: 1.35rem; */
2023-11-03 20:12:37 -05:00
border-color: white;
}
.activity {
border-width: 3px;
border-radius: 10px;
overflow: hidden;
margin: auto;
padding: 0;
display: flex;
}
.activity > p {
width: 100%;
}
a:hover {
color: white;
transition: 0.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
p {
color: white;
font-size: 1.2rem;
padding: 0;
margin: 10px;
}
img {
width: 100%;
2023-11-07 13:00:16 -06:00
max-width: 135px;
transition: all 2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.pfp {
border-radius: 15px;
2023-11-03 20:12:37 -05:00
border: darkgray 4px solid;
width: 60%;
2023-11-03 20:12:37 -05:00
transform: scale(0.95);
border-radius: 50%;
}
.pfp:hover {
2023-11-03 20:12:37 -05:00
transform: scale(1.05);
border-color: rgb(255, 200, 255);
object-fit: cover;
}
hr {
color: white;
opacity: 0.25;
border-width: 2px;
2023-11-16 20:56:07 -06:00
margin: 15px 10%;
2023-10-22 12:16:47 -05:00
}
2023-11-03 20:12:37 -05:00
#card {
2023-11-09 20:56:11 -06:00
background-color: rgb(75, 25, 100);
2023-11-03 20:12:37 -05:00
padding: 15px;
border: 2px white solid;
2023-11-16 22:00:16 -06:00
margin: 20px auto;
2023-11-16 20:56:07 -06:00
width: 95%;
2023-11-18 21:38:49 -06:00
max-width: 800px;
2023-11-07 15:04:48 -06:00
2023-11-03 20:12:37 -05:00
}
.me {
border-color: limegreen;
}
2023-11-07 13:16:50 -06:00
/* I am so sorry about this code,,, */
2023-10-22 12:16:47 -05:00
.love::before {
content: "<3 ";
color: rgb(255, 100, 150);
}
.like::before {
content: ":) ";
color: limegreen;
}
.silly::before {
content: ":P ";
color: aqua;
}
.fine::before {
content: ":/ ";
color: yellow;
}
.hate::before {
content: ">:( ";
color: red;
}
.love {
border-color: rgb(255, 100, 150);
}
.like {
border-color: limegreen;
}
.silly {
border-color: aqua;
}
.fine {
border-color: yellow;
}
.hate {
border-color: red;
}
@keyframes fade-in {
0% {
opacity: 0;
2023-10-22 16:34:09 -05:00
transform: translateY(20%);
2023-10-22 12:16:47 -05:00
}
100% {
opacity: 1;
transform: none;
}
2023-11-16 15:43:36 -06:00
}
.up {
border-color: limegreen;
}
.mid {
border-color: yellow;
}
.down {
border-color: red;
}