diff options
author | Matthew Lemon <y@yulqen.org> | 2024-09-05 12:02:02 +0100 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-09-05 12:02:02 +0100 |
commit | 707128730185f67d24ccfed2a9c7056129478fec (patch) | |
tree | 0ee570cc70236717928df26bdea7b231c4de8f26 /core/static/css | |
parent | 89eed2aaa438ca0c0db8d11692dee22e1825d493 (diff) |
Effort form looking much better
Diffstat (limited to 'core/static/css')
-rw-r--r-- | core/static/css/output.css | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/core/static/css/output.css b/core/static/css/output.css index 89f69f1..0a5c4ee 100644 --- a/core/static/css/output.css +++ b/core/static/css/output.css @@ -1255,6 +1255,22 @@ html { position: static; } +.absolute { + position: absolute; +} + +.relative { + position: relative; +} + +.right-2 { + right: 0.5rem; +} + +.top-2 { + top: 0.5rem; +} + .mx-auto { margin-left: auto; margin-right: auto; @@ -1346,11 +1362,20 @@ html { display: grid; } +.size-4 { + width: 1rem; + height: 1rem; +} + .size-6 { width: 1.5rem; height: 1.5rem; } +.h-6 { + height: 1.5rem; +} + .min-h-full { min-height: 100%; } @@ -1359,6 +1384,10 @@ html { width: 66.666667%; } +.w-6 { + width: 1.5rem; +} + .w-full { width: 100%; } @@ -1387,6 +1416,10 @@ html { flex-direction: column; } +.flex-wrap { + flex-wrap: wrap; +} + .items-end { align-items: flex-end; } @@ -1480,6 +1513,11 @@ html { border-top-width: 1px; } +.border-blue-200 { + --tw-border-opacity: 1; + border-color: rgb(191 219 254 / var(--tw-border-opacity)); +} + .border-blue-500 { --tw-border-opacity: 1; border-color: rgb(59 130 246 / var(--tw-border-opacity)); @@ -1712,6 +1750,10 @@ html { font-weight: 500; } +.font-normal { + font-weight: 400; +} + .font-semibold { font-weight: 600; } @@ -1746,6 +1788,11 @@ html { color: rgb(37 99 235 / var(--tw-text-opacity)); } +.text-blue-800 { + --tw-text-opacity: 1; + color: rgb(30 64 175 / var(--tw-text-opacity)); +} + .text-gray-500 { --tw-text-opacity: 1; color: rgb(107 114 128 / var(--tw-text-opacity)); @@ -1790,6 +1837,10 @@ html { text-decoration-line: underline; } +.decoration-blue-500 { + text-decoration-color: #3b82f6; +} + .decoration-pink-500 { text-decoration-color: #ec4899; } |