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

347 lines
5.4 KiB
CSS
Raw Normal View History

2024-02-02 15:47:59 -06:00
@import url('./bootstrap.css');
2024-02-02 15:46:44 -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');
}
2023-11-16 20:56:07 -06:00
* {
font-family: 'Rubik', Verdana, Geneva, Tahoma, sans-serif;
padding: 0;
text-align: center;
}
h1 {
color: rgb(225, 215, 255);
font-size: 2.5rem;
}
2024-02-02 09:22:12 -06:00
h2 {
font-size: 2rem;
color: rgb(225, 215, 255)
}
h3 {
font-size: 1.65rem
}
2023-12-22 10:34:44 -06:00
h3,
li {
color: white;
}
2024-02-07 12:53:48 -06:00
ul, ol {
2023-12-22 10:34:44 -06:00
display: inline-block
}
li {
2023-12-28 22:00:56 -06:00
font-size: 1.2rem;
2023-12-22 10:34:44 -06:00
text-align: left;
}
2023-11-30 21:56:34 -06:00
body,
html {
2023-11-09 17:54:05 -06:00
overflow-x: hidden;
margin: auto;
2024-01-26 06:45:29 -06:00
background-color: rgb(15, 4, 45);
background: linear-gradient(rgb(20, 4, 55), 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-12-18 07:45:42 -06:00
background-attachment: local;
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);
display: inline-block;
transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
.chip {
2023-12-18 07:43:26 -06:00
position: relative;
2023-12-17 21:23:39 -06:00
z-index: 3;
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;
2024-02-04 12:13:44 -06:00
background-color: black;
2023-11-03 20:12:37 -05:00
padding: 8px;
margin: 3px;
display: inline-block;
2023-11-19 10:27:01 -06:00
transform: scale(0.95);
2024-01-25 21:08:16 -06:00
transition: transform 1.25s cubic-bezier(0.075, 0.82, 0.165, 1), background-color 2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
2024-02-02 15:46:44 -06:00
.chip,
.chip>* {
2023-12-28 22:00:56 -06:00
text-decoration: none;
}
.chip:hover {
2024-02-04 15:03:54 -06:00
background-color: rgb(10, 0, 25);
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;
2024-01-25 21:08:16 -06:00
transition: transform 0.75s cubic-bezier(0.075, 0.82, 0.165, 1), background-color 3s cubic-bezier(0.075, 0.82, 0.165, 1);
}
2024-02-04 12:28:09 -06:00
.chip:hover > .smallimg {
2024-02-04 15:03:54 -06:00
background-color: rgb(10, 0, 25);
2024-02-04 12:28:09 -06:00
}
.activity {
border-width: 3px;
border-radius: 10px;
overflow: hidden;
margin: auto;
padding: 0;
display: flex;
2023-12-17 21:23:39 -06:00
position: relative;
z-index: 3;
}
2023-11-30 21:56:34 -06:00
.activity>p {
width: 100%;
2024-01-27 14:59:58 -06:00
overflow-wrap: break-word;
}
2023-11-30 21:56:34 -06:00
.activity>img {
2023-11-20 18:50:02 -06:00
width: 128px;
aspect-ratio: 1/1;
object-fit: cover;
}
2024-02-02 15:46:44 -06:00
.activity>.smallimg {
2024-01-29 18:48:42 -06:00
width: 64px;
height: 64px;
position: absolute;
bottom: 0px;
2024-02-04 15:03:54 -06:00
left: 72px;
2024-01-29 18:58:58 -06:00
border-radius: 50px;
2024-02-04 12:28:09 -06:00
background: black;
2024-02-04 14:41:15 -06:00
padding: 5px;
2024-02-04 12:12:54 -06:00
/* border: 2px gray solid; */
2024-02-04 15:03:54 -06:00
transform: scale(0.9);
2024-01-29 18:58:58 -06:00
}
2024-02-02 15:46:44 -06:00
.activity>.smallimg:hover {
2024-01-29 18:58:58 -06:00
transform: scale(1);
2024-01-29 18:48:42 -06:00
}
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;
}
2024-01-07 01:28:28 -06:00
img:not(.project-inner > div > 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%;
2024-01-07 00:36:27 -06:00
aspect-ratio: 1/1;
2023-11-19 10:52:01 -06:00
transform: scale(0.9);
border-radius: 50%;
}
.pfp:hover {
2023-11-19 10:52:01 -06:00
transform: scale(1);
2023-11-03 20:12:37 -05:00
border-color: rgb(255, 200, 255);
object-fit: cover;
}
2024-01-04 16:29:47 -06:00
.emoji {
width: 32px;
border-radius: 10%;
2024-01-04 16:32:59 -06:00
/* border: 1px gray solid; */
2024-01-04 16:29:47 -06:00
}
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 {
2024-01-26 06:49:08 -06:00
background-color: rgb(15, 5, 80);
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-12-17 21:23:39 -06:00
z-index: 3;
position: relative;
2023-11-03 20:12:37 -05:00
}
.me {
border-color: limegreen;
}
2024-01-07 01:10:53 -06:00
.project {
2024-01-07 01:28:28 -06:00
background-color: rgba(35, 35, 35, 0.8);
padding: 15px;
border: 2px gray solid;
2024-01-07 01:49:42 -06:00
margin: 20px 0px;
border-radius: 15px;
2024-01-07 01:10:53 -06:00
}
.project-inner {
overflow: hidden;
padding: 0;
2024-01-07 01:28:28 -06:00
margin: auto;
2024-01-07 01:10:53 -06:00
z-index: 3;
}
2024-02-02 15:46:44 -06:00
.project-inner>div>img {
2024-01-07 01:10:53 -06:00
object-fit: cover;
2024-01-07 01:28:28 -06:00
border: 2px white solid;
width: 80%;
max-width: 500px;
margin: auto;
2024-01-07 01:49:42 -06:00
border-radius: 10px;
2024-01-07 01:10:53 -06:00
}
2024-02-02 15:46:44 -06:00
.project>p {
2024-01-07 01:10:53 -06:00
display: inline-block;
}
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;
}
2023-11-16 15:43:36 -06:00
.up {
border-color: limegreen;
}
.mid {
border-color: yellow;
}
.down {
border-color: red;
2023-11-30 21:56:34 -06:00
}
.post {
2023-11-30 22:01:19 -06:00
background-color: rgba(85, 50, 150, 0.3);
border: 2px gray solid;
display: inline-block;
/* border-radius: 15px; */
2023-11-30 21:56:34 -06:00
padding: 10px;
2023-11-30 22:01:19 -06:00
margin: 8px;
2023-11-30 21:56:34 -06:00
}
.minipfp {
width: 70px;
display: inline-block;
margin-right: 10px;
border: 2px lightgray solid;
border-radius: 5px;
2023-11-30 22:17:27 -06:00
}
2024-01-25 22:24:09 -06:00
.lengthBar {
background-color: rgb(50, 40, 60);
display: inline-block;
width: 80%;
height: 10px;
padding: 0;
overflow: hidden;
border-radius: 5px;
2024-01-27 13:05:18 -06:00
margin-right: 1.9%;
2024-01-25 22:24:09 -06:00
}
2024-02-02 15:46:44 -06:00
.lengthBar>span {
2024-01-25 22:24:09 -06:00
margin: 0;
padding: 0;
width: 100%;
2024-01-25 22:56:30 -06:00
background-color: rgb(200, 200, 230);
2024-01-25 22:24:09 -06:00
height: 20px;
2024-01-25 23:41:19 -06:00
display: block;
2024-01-25 22:24:09 -06:00
position: relative;
}
2024-02-02 11:22:04 -06:00
.note {
font-size: 0.95rem;
color: lightgray;
}
2023-11-30 22:17:27 -06:00
@keyframes fade-in {
0% {
opacity: 0;
transform: translateY(50vh);
}
100% {
opacity: 1;
transform: none;
}
}