site/_includes/styles/pages/admins.css
Ruben 6821db4b50
All checks were successful
/ build (push) Successful in 28s
admins page
2025-07-12 22:50:35 -05:00

62 lines
No EOL
1.4 KiB
CSS

/* ╭─────────────────────────────────────╮
/ │ _ _ │
/ │ __ _ __| |_ __ ___ (_)_ __ ___ │
/ │ / _` |/ _` | '_ ` _ \| | '_ \/ __| │
/ │ | (_| | (_| | | | | | | | | | \__ \ │
/ │ \__,_|\__,_|_| |_| |_|_|_| |_|___/ │
/ ╰─────────────────────────────────────╯
/ admins - styling the admin cards on the admins page (admin.md) */
#admins section .card {
overflow: hidden;
position: relative;
.sona {
bottom: -3rem;
max-width: 20rem;
opacity: .5;
position: absolute;
right: 0;
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;
}
.sona {
bottom: -8rem;
}
}
&.unnick {
--accent: #0094FF;
.button-container .button:hover {
color: white !important;
}
.sona {
bottom: -2rem;
}
}
@media screen and (max-width: 750) {
& {
padding-bottom: 6rem;
}
}
}