diff --git a/website/index.html b/website/index.html index 32397e6..92f2f3d 100644 --- a/website/index.html +++ b/website/index.html @@ -18,6 +18,11 @@ SPDX-License-Identifier: GPL-3.0-or-later

Night Theme Switcher

A GNOME Shell extension to make your desktop easy on the eye, day and night.

Download + diff --git a/website/style.css b/website/style.css index 619fa20..eab0f58 100644 --- a/website/style.css +++ b/website/style.css @@ -27,7 +27,9 @@ SPDX-License-Identifier: GPL-3.0-or-later html, body, h1, -p +p, +ul, +li { margin: 0; padding: 0; @@ -148,7 +150,7 @@ body .content { max-width: 20em; - padding: 4em 2em; + padding: 4em 2em 2em; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 0.5em; background: #000; @@ -215,6 +217,30 @@ body text-decoration: underline; } +.links +{ + display: flex; + flex-wrap: wrap; + justify-content: center; + gap: 1em 2em; + margin-top: 4rem; + font-size: 0.8em; + text-align: center; + list-style: none; +} + +.link +{ + opacity: 0.5; +} + +.link:hover, +.link:focus +{ + text-decoration: underline; + opacity: 1; +} + @media (max-width: 26em) { @@ -224,4 +250,9 @@ body padding: 2em 2em; min-height: 0; } + + .links + { + display: block; + } }