site/_includes/styles/footer.css

136 lines
3.9 KiB
CSS
Raw Normal View History

/*
/ __ _
/ / _| ___ ___ | |_ ___ _ __
/ | |_ / _ \ / _ \| __/ _ \ '__|
/ | _| (_) | (_) | || __/ |
/ |_| \___/ \___/ \__\___|_|
/
/ footer - related styling for the footer window on all pages */
footer {
2025-10-19 00:06:48 -05:00
width: fit-content;
margin-left: auto;
margin-right: auto;
2025-10-19 00:06:48 -05:00
width: 50rem;
2025-10-19 00:06:48 -05:00
.header {
padding: .25rem !important;
a {
margin-left: .5rem;
font-size: .9rem;
}
}
window-contents {
display: flex !important;
2025-10-19 00:06:48 -05:00
flex-flow: row wrap;
gap: 2rem;
padding: 1rem !important;
2025-10-19 00:06:48 -05:00
footer-section {
display: flex;
flex-flow: column wrap;
2025-10-19 00:06:48 -05:00
p {
margin-top: 0;
margin-bottom: .6rem;
}
2025-10-27 09:20:00 -05:00
p:last-child { margin-bottom: 0; }
2025-10-19 00:06:48 -05:00
h3 {
font-size: 1.5rem;
margin-top: 0;
margin-bottom: .8rem;
}
}
2025-10-19 00:06:48 -05:00
footer-section[icon] {
margin-right: 1rem;
img {
width: 3rem;
height: 3rem;
}
}
2025-10-19 00:06:48 -05:00
footer-section[webrings] {
width: 13rem;
2025-10-19 00:06:48 -05:00
p {
2025-10-19 23:24:45 -05:00
margin-bottom: .8rem;
2025-10-19 00:06:48 -05:00
margin-top: 0;
}
2025-10-19 00:06:48 -05:00
a {
border-radius: .5rem;
padding: 0.25rem .06rem;
text-decoration-color: transparent;
icon-tabler {
pointer-events: none;
}
&:hover {
text-decoration-color: inherit;
}
}
a[aria-label="Previous"] {
color: var(--yellow);
background: light-dark(color-mix(in srgb, var(--yellow) 30%, transparent), color-mix(in srgb, var(--yellow) 25%, transparent));
}
2025-10-19 00:06:48 -05:00
a[aria-label="Next"] {
color: var(--green);
background: light-dark(color-mix(in srgb, var(--green) 30%, transparent), color-mix(in srgb, var(--green) 25%, transparent));
}
a[href="https://fediring.net"] {
padding: 0.25rem .3rem;
color: var(--purple);
background: light-dark(color-mix(in srgb, var(--purple) 25%, transparent), color-mix(in srgb, var(--purple) 15%, transparent));
}
a[href="https://keithhacks.cyou/furryring.php"] {
padding: 0.25rem .3rem;
color: var(--blue);
background: light-dark(color-mix(in srgb, var(--blue) 20%, transparent), color-mix(in srgb, var(--blue) 15%, transparent));
}
a[href="https://stellophiliac.github.io/roboring"] {
padding: 0.25rem .3rem;
color: var(--foreground);
background: light-dark(color-mix(in srgb, var(--foreground) 20%, var(--background)), color-mix(in srgb, var(--foreground) 15%, var(--background)));
}
}
2025-10-19 00:06:48 -05:00
footer-section[links] {
a {
margin-bottom: .2rem;
margin-top: 0;
width: fit-content;
}
2025-10-19 00:06:48 -05:00
span:last-of-type {
margin-top: .5rem;
}
}
}
2025-10-19 00:06:48 -05:00
@media screen and (max-width: 50rem) {
& {
width: unset !important;
border-radius: 0 !important;
margin-top: 1rem;
2025-10-19 00:06:48 -05:00
section {
footer-section[icon] {
margin-right: auto;
}
2025-10-19 00:06:48 -05:00
footer-section[webrings] {
width: unset;
}
}
}
}
}