Violets-Purgatory/static/style.css

139 lines
2.7 KiB
CSS
Raw Normal View History

2023-09-21 16:18:23 -05:00
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;400&display=swap');
:root {
font-family: 'Rubik', Verdana, Geneva, Tahoma, sans-serif;
padding: 0;
text-align: center;
--bg-color-1: rgb(125, 25, 100);
--bg-color-2: rgb(75, 25, 125);
--faded-bg-color-1: rgb(80, 20, 60);
--faded-bg-color-2: rgb(60, 20, 80);
--button-bg-1: rgb(75, 75, 125);
}
h1 {
color: rgb(225, 215, 255);
font-size: 2.5rem;
margin: 0;
padding: 10px;
2023-09-21 16:18:23 -05:00
}
h2 {
color: white;
font-size: 2rem;
}
body {
width: 100vw;
height: 100vh;
padding: 0;
margin: 0;
background-color: var(--faded-bg-color-1);
background-image: linear-gradient(45deg, var(--faded-bg-color-1), var(--faded-bg-color-2))
}
.centered {
display: flex;
justify-content: center;
align-items: center;
}
#card {
border: rgb(225, 225, 255) 5px solid;
border-radius: 25px;
max-width: 95%;
max-height: 95%;
/* max-width: 1200px; */
/* max-height: 650px; */
padding: 5px;
2023-09-21 16:18:23 -05:00
background-color: var(--bg-color-2);
background-image: linear-gradient(var(--bg-color-1), var(--bg-color-2));
overflow: auto;
}
.miniCard {
text-align: center;
border: rgb(225, 225, 255) 4px solid;
border-radius: 25px;
padding: 5px;
2023-09-21 16:18:23 -05:00
margin: 20px;
background-color: var(--bg-color-2);
background-image: linear-gradient(var(--bg-color-1), var(--bg-color-2));
overflow: hidden;
max-width: 100%;
max-height: 100%;
/* display: inline-block; */
}
/* #links {
text-align: center !important;
display: inline-flex !important;
justify-content: center !important;
align-items: flex-end !important;
} */
#links {
margin: 0;
padding: 0;
}
2023-09-21 16:18:23 -05:00
a {
color: rgb(230, 175, 255);
text-decoration: none;
display: inline-block;
transition: 1.5s all cubic-bezier(0.075, 0.82, 0.165, 1);
}
a:hover {
2023-09-22 09:33:48 -05:00
transform: scale(1.1);
margin: 7px;
color: white;
}
.buttonLink {
font-size: 2rem;
border: 2px white solid;
border-radius: 0px;
background-color: black;
padding: 5px;
margin: 5px;
}
.buttonLink:hover {
2023-09-21 16:18:23 -05:00
background-color: rgb(60, 50, 75);
2023-09-22 09:33:48 -05:00
transform: scale(1.1);
2023-09-21 16:18:23 -05:00
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: 5px;
2023-09-21 16:18:23 -05:00
}
img {
width: 30%;
2023-09-21 16:18:23 -05:00
max-width: 150px;
min-width: 100px;
2023-09-21 16:18:23 -05:00
border: rgb(175, 75, 200) 4px solid;
border-radius: 50%;
transform: scale(0.9);
transition: all 2s cubic-bezier(0.075, 0.82, 0.165, 1);
}
img:hover {
transform: scale(1);
/* border-color: rgb(255, 200, 255); */
object-fit: cover;
2023-09-22 09:00:09 -05:00
}
hr {
color: white;
opacity: 0.5;
border-width: 2px;
2023-09-21 16:18:23 -05:00
}