site/_includes/styles/pages/services.css
Ruben 1e96855c18
All checks were successful
/ build (push) Successful in 36s
add services page, add mastodon page
2025-07-04 05:12:50 -05:00

39 lines
No EOL
1.1 KiB
CSS

/* ╭───────────────────────────────────────╮
/ │ _ │
/ │ ___ ___ _ ____ _(_) ___ ___ ___ │
/ │ / __|/ _ \ '__\ \ / / |/ __/ _ \/ __| │
/ │ \__ \ __/ | \ V /| | (_| __/\__ \ │
/ │ |___/\___|_| \_/ |_|\___\___||___/ │
/ ╰───────────────────────────────────────╯
/ services - styling for managing the services page */
#services.window {
.flex-container {
display: flex;
flex-direction: row;
section {
flex: 1;
}
#public {
padding: 0 .8rem 0 0;
}
#private {
padding: 0 0 0 .8rem;
}
}
}
@media screen and (max-width: 59em) {
#services.window {
.flex-container {
flex-direction: column !important;
#public, #private {
padding: unset !important;
}
}
}
}