diff options
| author | 2025-08-02 16:22:53 +0700 | |
|---|---|---|
| committer | 2025-08-02 16:22:53 +0700 | |
| commit | 8e3f93ed503864670476d322639a8b9051d5e740 (patch) | |
| tree | dff97c3fd0177744ff9473afd94ed78bce21182f /static | |
| parent | 79cc42d8a6904720ffba455e8a4083a8f48851b7 (diff) | |
| download | web-8e3f93ed503864670476d322639a8b9051d5e740.tar.gz web-8e3f93ed503864670476d322639a8b9051d5e740.zip | |
feat: add geolocation of places in blog0.3.1
Diffstat (limited to 'static')
| -rw-r--r-- | static/input.css | 16 | ||||
| -rw-r--r-- | static/output.css | 15 |
2 files changed, 31 insertions, 0 deletions
diff --git a/static/input.css b/static/input.css index 4058cb1..c105d8f 100644 --- a/static/input.css +++ b/static/input.css @@ -227,14 +227,26 @@ width: 90vw; } +.w-p60 { + width: 60%; +} + .w-p80 { width: 80%; } +.w-p100 { + width: 100%; +} + .w-vmax4 { width: 4vmax; } +.h-vh40 { + height: 40vh; +} + .h-vh90 { height: 90vh; } @@ -288,6 +300,10 @@ padding-right: 1.2vmin; } +.p-vmin0-8 { + padding: 0.8vmin; +} + .p-vmin2-4 { padding: 2.4vmin; } diff --git a/static/output.css b/static/output.css index ea57d8f..b07fd94 100644 --- a/static/output.css +++ b/static/output.css @@ -259,6 +259,9 @@ .flex-5 { flex: 5; } + .flex-none { + flex: none; + } .flex-grow { flex-grow: 1; } @@ -584,12 +587,21 @@ .w-vw90 { width: 90vw; } +.w-p60 { + width: 60%; +} .w-p80 { width: 80%; } +.w-p100 { + width: 100%; +} .w-vmax4 { width: 4vmax; } +.h-vh40 { + height: 40vh; +} .h-vh90 { height: 90vh; } @@ -630,6 +642,9 @@ .pr-vmin1-2 { padding-right: 1.2vmin; } +.p-vmin0-8 { + padding: 0.8vmin; +} .p-vmin2-4 { padding: 2.4vmin; } |