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-gruvbox.css | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 examples/simple-gruvbox.css (limited to 'examples/simple-gruvbox.css') diff --git a/examples/simple-gruvbox.css b/examples/simple-gruvbox.css new file mode 100644 index 0000000..b5c12cf --- /dev/null +++ b/examples/simple-gruvbox.css @@ -0,0 +1,35 @@ +body { + background-color: #282828; + color: #ebdbb2; +} + +.cards-container { + display: grid; + grid-template-columns: repeat(7, 2fr); + align-items: center; + gap: 20px; + margin: 13px; +} + +.card { + background-color: #363332; + border-radius: 12px; + text-align: center; + padding-bottom: 20px; +} + +h2 { + color: #83a598; + margin-bottom: 5px; +} + +a { + color: #bdae93; + display: block; + margin: 5px 0; + text-decoration: none; +} + +a:hover { + text-decoration: underline; +} -- cgit v1.2.3