diff options
Diffstat (limited to 'static/style.css')
| -rw-r--r-- | static/style.css | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/static/style.css b/static/style.css index 05a2676..6a62cb5 100644 --- a/static/style.css +++ b/static/style.css @@ -8,6 +8,8 @@ * { padding: 0; margin: 0; + + font-family: Arial, Helvetica, sans-serif; } body { @@ -96,4 +98,25 @@ header .brand>a { .row { display: flex; flex-direction: row; +} + +.column { + display: flex; + flex-direction: column; +} + +.justify-center { + justify-content: center; +} + +.align-center { + align-items: center; +} + +.gap-8 { + gap: 8px; +} + +.gap-16 { + gap: 16px; }
\ No newline at end of file |
