diff options
| author | Naz <ndpm13@ch-naseem.com> | 2025-09-15 14:50:08 +0100 |
|---|---|---|
| committer | Naz <ndpm13@ch-naseem.com> | 2025-09-15 15:08:15 +0100 |
| commit | 8b5a71dd3a490718540a7e9d48da2a220256a628 (patch) | |
| tree | b1e029fad2a636dabcf053192ded8542e530b3d1 /examples/simple-gruvbox.css | |
| parent | c53617755ea9f98c8c8e36901db90e19e827a483 (diff) | |
✨feat: dirty commit bringing basic functionality
Diffstat (limited to 'examples/simple-gruvbox.css')
| -rw-r--r-- | examples/simple-gruvbox.css | 35 |
1 files changed, 35 insertions, 0 deletions
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; +} |
