diff options
| author | Arslaan Pathan <[email protected]> | 2026-05-02 13:44:09 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-05-02 13:44:09 +1200 |
| commit | 7a9998d6f0faed6f62541f8480d4301bcb4902f1 (patch) | |
| tree | 4e95c8a690d19c77ea656db406c44689169f0c43 /styles.css | |
| parent | 3a176877da4e1b153d6e9c5101e2b46e7c04e302 (diff) | |
| download | brickmii-7a9998d6f0faed6f62541f8480d4301bcb4902f1.tar.xz brickmii-7a9998d6f0faed6f62541f8480d4301bcb4902f1.zip | |
stuff
Diffstat (limited to 'styles.css')
| -rw-r--r-- | styles.css | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..621e1f9 --- /dev/null +++ b/styles.css @@ -0,0 +1,37 @@ +@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap'); + +.content { + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; + margin: auto; + width: 70vw; +} + +.content img { + width: 500px; +} + +.cards { + display: flex; + flex-direction: row; + justify-content: center; + margin: auto; + padding: 10px; +} + +.card { + display: flex; + flex-direction: column; + justify-content: center; + background-color: #de7e4b; + border-radius: 20px; + color: #ffffff; + padding: 10px; + max-width: 20vw; +} + +html, body { + font-family: 'DM Sans', 'Arial', sans-serif; +} |
