2023-11-18 21:09:42 -06:00
|
|
|
@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-10-20 21:52:33 -05:00
|
|
|
|
2023-11-16 20:56:07 -06:00
|
|
|
* {
|
|
|
|
font-family: 'Rubik', Verdana, Geneva, Tahoma, sans-serif;
|
2023-10-20 21:52:33 -05:00
|
|
|
padding: 0;
|
|
|
|
text-align: center;
|
2023-11-16 20:56:07 -06:00
|
|
|
line-height: 1.5rem;
|
2023-10-20 21:52:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
color: rgb(225, 215, 255);
|
|
|
|
font-size: 2.5rem;
|
|
|
|
}
|
|
|
|
|
2023-11-30 21:56:34 -06:00
|
|
|
h2,
|
2023-12-22 10:34:44 -06:00
|
|
|
h3,
|
|
|
|
li {
|
2023-10-20 21:52:33 -05:00
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
|
2023-12-22 10:34:44 -06:00
|
|
|
ul {
|
|
|
|
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;
|
2023-10-20 21:52:33 -05:00
|
|
|
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-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;
|
2023-10-20 21:52:33 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
a {
|
2023-11-09 20:56:11 -06:00
|
|
|
color: rgb(175, 225, 255);
|
2023-10-20 21:52:33 -05:00
|
|
|
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;
|
2023-10-20 21:52:33 -05:00
|
|
|
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;
|
2023-10-20 21:52:33 -05:00
|
|
|
background-color: black;
|
2023-11-03 20:12:37 -05:00
|
|
|
padding: 8px;
|
|
|
|
margin: 3px;
|
2023-10-20 21:52:33 -05:00
|
|
|
display: inline-block;
|
2023-11-19 10:27:01 -06:00
|
|
|
transform: scale(0.95);
|
|
|
|
transition: transform 1.25s cubic-bezier(0.075, 0.82, 0.165, 1);
|
2023-10-20 21:52:33 -05:00
|
|
|
}
|
|
|
|
|
2023-12-28 22:00:56 -06:00
|
|
|
.chip, .chip > * {
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2023-10-20 21:52:33 -05:00
|
|
|
.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;
|
2023-11-19 10:27:01 -06:00
|
|
|
transition: transform 0.75s cubic-bezier(0.075, 0.82, 0.165, 1);
|
2023-10-20 21:52:33 -05:00
|
|
|
}
|
|
|
|
|
2023-11-18 21:09:42 -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-18 21:09:42 -06:00
|
|
|
}
|
|
|
|
|
2023-11-30 21:56:34 -06:00
|
|
|
.activity>p {
|
2023-11-18 21:09:42 -06:00
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2023-10-20 21:52:33 -05: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
img {
|
2023-11-18 21:09:42 -06:00
|
|
|
width: 100%;
|
2023-11-07 13:00:16 -06:00
|
|
|
max-width: 135px;
|
2023-11-18 21:09:42 -06:00
|
|
|
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;
|
2023-11-18 21:09:42 -06:00
|
|
|
width: 60%;
|
2023-11-19 10:52:01 -06:00
|
|
|
transform: scale(0.9);
|
2023-11-18 21:09:42 -06:00
|
|
|
border-radius: 50%;
|
2023-10-20 21:52:33 -05:00
|
|
|
}
|
|
|
|
|
2023-11-18 21:09:42 -06:00
|
|
|
.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);
|
2023-10-20 21:52:33 -05:00
|
|
|
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-12-17 21:23:39 -06:00
|
|
|
z-index: 3;
|
|
|
|
position: relative;
|
2023-11-03 20:12:37 -05:00
|
|
|
}
|
|
|
|
|
2023-11-07 15:52:10 -06: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;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes fade-in {
|
|
|
|
0% {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateY(50vh);
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
|
|
|
opacity: 1;
|
|
|
|
transform: none;
|
|
|
|
}
|
2023-12-17 21:23:39 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake {
|
|
|
|
color: white;
|
2023-12-18 07:43:26 -06:00
|
|
|
font-size: 0.5em;
|
2023-12-17 21:23:39 -06:00
|
|
|
font-family: Arial, sans-serif;
|
|
|
|
text-shadow: 0 0 5px #000;
|
2023-12-18 07:43:26 -06:00
|
|
|
visibility: hidden;
|
2023-12-17 21:23:39 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake,
|
|
|
|
.snowflake .inner {
|
|
|
|
z-index: 1;
|
|
|
|
animation-iteration-count: infinite;
|
|
|
|
animation-play-state: running
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes snowflakes-fall {
|
|
|
|
0% {
|
2023-12-18 07:43:26 -06:00
|
|
|
visibility: visible;
|
2023-12-17 21:23:39 -06:00
|
|
|
transform: translateY(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
100% {
|
2023-12-18 07:43:26 -06:00
|
|
|
visibility: visible;
|
2023-12-17 21:23:39 -06:00
|
|
|
transform: translateY(110vh)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes snowflakes-shake {
|
|
|
|
|
|
|
|
0%,
|
|
|
|
100% {
|
|
|
|
transform: translateX(0)
|
|
|
|
}
|
|
|
|
|
|
|
|
50% {
|
|
|
|
transform: translateX(80px)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake {
|
|
|
|
position: fixed;
|
|
|
|
top: -10%;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
user-select: none;
|
|
|
|
cursor: default;
|
|
|
|
animation-name: snowflakes-shake;
|
2023-12-18 07:43:26 -06:00
|
|
|
animation-delay: 0.5s;
|
2023-12-17 21:23:39 -06:00
|
|
|
animation-duration: 3s;
|
|
|
|
animation-timing-function: ease-in-out
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake .inner {
|
|
|
|
animation-duration: 10s;
|
2023-12-18 07:43:26 -06:00
|
|
|
animation-delay: 0.5s;
|
2023-12-17 21:23:39 -06:00
|
|
|
animation-name: snowflakes-fall;
|
|
|
|
animation-timing-function: linear
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(0) {
|
|
|
|
left: 1%;
|
|
|
|
animation-delay: 0s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(0) .inner {
|
|
|
|
animation-delay: 0s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:first-of-type {
|
|
|
|
left: 10%;
|
|
|
|
animation-delay: 1s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:first-of-type .inner,
|
|
|
|
.snowflake:nth-of-type(8) .inner {
|
|
|
|
animation-delay: 1s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(2) {
|
|
|
|
left: 20%;
|
|
|
|
animation-delay: .5s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(2) .inner,
|
|
|
|
.snowflake:nth-of-type(6) .inner {
|
|
|
|
animation-delay: 6s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(3) {
|
|
|
|
left: 30%;
|
|
|
|
animation-delay: 2s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(11) .inner,
|
|
|
|
.snowflake:nth-of-type(3) .inner {
|
|
|
|
animation-delay: 4s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(4) {
|
|
|
|
left: 40%;
|
|
|
|
animation-delay: 2s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(10) .inner,
|
|
|
|
.snowflake:nth-of-type(4) .inner {
|
|
|
|
animation-delay: 2s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(5) {
|
|
|
|
left: 50%;
|
|
|
|
animation-delay: 3s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(5) .inner {
|
|
|
|
animation-delay: 8s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(6) {
|
|
|
|
left: 60%;
|
|
|
|
animation-delay: 2s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(7) {
|
|
|
|
left: 70%;
|
|
|
|
animation-delay: 1s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(7) .inner {
|
|
|
|
animation-delay: 2.5s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(8) {
|
|
|
|
left: 80%;
|
|
|
|
animation-delay: 0s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(9) {
|
|
|
|
left: 90%;
|
|
|
|
animation-delay: 1.5s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(9) .inner {
|
|
|
|
animation-delay: 3s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(10) {
|
|
|
|
left: 25%;
|
|
|
|
animation-delay: 0s
|
|
|
|
}
|
|
|
|
|
|
|
|
.snowflake:nth-of-type(11) {
|
|
|
|
left: 65%;
|
|
|
|
animation-delay: 2.5s
|
2023-10-20 21:52:33 -05:00
|
|
|
}
|