diff options
Diffstat (limited to 'css')
-rw-r--r-- | css/stylesheet.css | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/css/stylesheet.css b/css/stylesheet.css index c60a35b..318850a 100644 --- a/css/stylesheet.css +++ b/css/stylesheet.css @@ -48,6 +48,35 @@ a:hover { padding: 10px 10px; } +.cssa-webring-container { + all: unset; + display: flex; + flex-direction: column; + padding: 1em; +} + +.cssa-webring-description { + margin-block-end: 0.5em; +} + +.cssa-webring-site-links { + display: grid; + grid-template-columns: repeat(3, minmax(0, 1fr)); + list-style: none; + margin: 0; + padding: 0; +} + +.cssa-webring-prev-site a::before { + content: "←"; + margin-inline-end: 1ch; +} + +.cssa-webring-next-site a::after { + content: "→"; + margin-inline-start: 1ch; +} + .footer { width: 700px; bottom: 0; |