From 8b5a71dd3a490718540a7e9d48da2a220256a628 Mon Sep 17 00:00:00 2001 From: Naz Date: Mon, 15 Sep 2025 14:50:08 +0100 Subject: =?UTF-8?q?=E2=9C=A8feat:=20dirty=20commit=20bringing=20basic=20fu?= =?UTF-8?q?nctionality?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/simple-solarized.css | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 examples/simple-solarized.css (limited to 'examples/simple-solarized.css') diff --git a/examples/simple-solarized.css b/examples/simple-solarized.css new file mode 100644 index 0000000..af5c8be --- /dev/null +++ b/examples/simple-solarized.css @@ -0,0 +1,35 @@ +body { + background-color: #002b36; + color: #eee8d5; +} + +.cards-container { + display: grid; + grid-template-columns: repeat(7, 2fr); + align-items: center; + gap: 20px; + margin: 13px; +} + +.card { + background-color: #073642; + border-radius: 12px; + text-align: center; + padding-bottom: 20px; +} + +h2 { + color: #2aa198; + margin-bottom: 5px; +} + +a { + color: #93a1a1; + display: block; + margin: 5px 0; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} -- cgit v1.2.3