site/_includes/styles/pages/admins.css

88 lines
1.9 KiB
CSS
Raw Normal View History

/*
/ _ _
/ __ _ __| |_ __ ___ (_)_ __ ___
/ / _` |/ _` | '_ ` _ \| | '_ \/ __|
/ | (_| | (_| | | | | | | | | | \__ \
/ \__,_|\__,_|_| |_| |_|_|_| |_|___/
/
/ admins - styling the admin cards on the admins page (admin.md) */
#admins section .card {
overflow: hidden;
position: relative;
2025-07-13 12:45:03 -05:00
h4, p {
z-index: 100;
}
.sona {
bottom: -3rem;
2025-07-12 22:50:35 -05:00
max-width: 20rem;
opacity: .5;
position: absolute;
2025-07-13 12:45:03 -05:00
right: -.5rem;
2025-07-12 22:50:35 -05:00
transform: rotate(16deg) scaleX(-1);
transition: 0.2s;
&:hover {
opacity: 1;
transition: 0.2s;
}
}
&.sneexy {
--accent: #65ff88;
}
&.senil {
--accent: #008E54;
.button-container .button:hover {
color: white !important;
}
2025-07-12 22:50:35 -05:00
.sona {
2025-07-13 12:45:03 -05:00
bottom: -9rem;
2025-07-12 22:50:35 -05:00
}
}
&.unnick {
--accent: #0094FF;
.button-container .button:hover {
color: white !important;
}
2025-07-12 22:50:35 -05:00
.sona {
bottom: -2rem;
}
}
2025-07-17 02:13:43 -05:00
&.melontini {
--accent: #e05188;
.button-container .button:hover {
color: white !important;
}
}
2025-07-13 12:45:03 -05:00
@media screen and (max-width: 835px) {
&:has(.sona) {
padding-bottom: 5rem;
.sona {
pointer-events: none !important;
}
}
}
@media screen and (max-width: 375px) {
&:has(.sona) {
padding-bottom: 0rem !important;
.sona {
display: none !important;
}
2025-07-12 22:50:35 -05:00
}
}
}