diff --git a/assets/css/theme.css b/assets/css/theme.css index a755a4c..02766b2 100644 --- a/assets/css/theme.css +++ b/assets/css/theme.css @@ -847,6 +847,10 @@ select { grid-column: span 1 / span 1; } +.col-span-3 { + grid-column: span 3 / span 3; +} + .col-start-1 { grid-column-start: 1; } @@ -871,10 +875,18 @@ select { grid-row-start: 1; } +.row-start-2 { + grid-row-start: 2; +} + .row-end-2 { grid-row-end: 2; } +.row-end-3 { + grid-row-end: 3; +} + .-mx-2 { margin-left: -0.5rem; margin-right: -0.5rem; @@ -930,6 +942,16 @@ select { margin-bottom: 2rem; } +.mx-1 { + margin-left: 0.25rem; + margin-right: 0.25rem; +} + +.my-12 { + margin-top: 3rem; + margin-bottom: 3rem; +} + .mb-1 { margin-bottom: 0.25rem; } @@ -1026,6 +1048,18 @@ select { margin-top: 2rem; } +.mt-32 { + margin-top: 8rem; +} + +.mt-48 { + margin-top: 12rem; +} + +.mt-9 { + margin-top: 2.25rem; +} + .block { display: block; } @@ -1098,6 +1132,22 @@ select { height: 100%; } +.h-1\/2 { + height: 50%; +} + +.h-\[100px\] { + height: 100px; +} + +.h-\[20px\] { + height: 20px; +} + +.h-\[50px\] { + height: 50px; +} + .max-h-\[40px\] { max-height: 40px; } @@ -1171,6 +1221,14 @@ select { width: max-content; } +.w-\[20px\] { + width: 20px; +} + +.w-\[50px\] { + width: 50px; +} + .max-w-6xl { max-width: 72rem; } @@ -1238,10 +1296,22 @@ select { list-style-type: square; } +.grid-flow-col { + grid-auto-flow: column; +} + .grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } +.grid-cols-3 { + grid-template-columns: repeat(3, minmax(0, 1fr)); +} + +.grid-rows-3 { + grid-template-rows: repeat(3, minmax(0, 1fr)); +} + .flex-row { flex-direction: row; } @@ -1274,6 +1344,10 @@ select { align-items: baseline; } +.justify-start { + justify-content: flex-start; +} + .justify-end { justify-content: flex-end; } @@ -1331,12 +1405,27 @@ select { row-gap: 0.25rem; } +.gap-x-2 { + -moz-column-gap: 0.5rem; + column-gap: 0.5rem; +} + +.gap-y-2 { + row-gap: 0.5rem; +} + .space-x-2 > :not([hidden]) ~ :not([hidden]) { --tw-space-x-reverse: 0; margin-right: calc(0.5rem * var(--tw-space-x-reverse)); margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); } +.space-y-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-y-reverse: 0; + margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse))); + margin-bottom: calc(0.5rem * var(--tw-space-y-reverse)); +} + .overflow-y-auto { overflow-y: auto; } @@ -1359,6 +1448,10 @@ select { border-width: 1px; } +.border-2 { + border-width: 2px; +} + .border-t { border-top-width: 1px; } @@ -1422,6 +1515,16 @@ select { border-color: rgb(252 165 165 / var(--tw-border-opacity)); } +.border-black { + --tw-border-opacity: 1; + border-color: rgb(0 0 0 / var(--tw-border-opacity)); +} + +.border-white { + --tw-border-opacity: 1; + border-color: rgb(255 255 255 / var(--tw-border-opacity)); +} + .bg-black\/70 { background-color: rgb(0 0 0 / 0.7); } @@ -1519,6 +1622,10 @@ select { padding: 2rem; } +.p-1 { + padding: 0.25rem; +} + .px-2 { padding-left: 0.5rem; padding-right: 0.5rem; @@ -1653,6 +1760,38 @@ select { padding-top: 2rem; } +.pb-4 { + padding-bottom: 1rem; +} + +.pl-4 { + padding-left: 1rem; +} + +.pt-0 { + padding-top: 0px; +} + +.pt-1 { + padding-top: 0.25rem; +} + +.pt-2 { + padding-top: 0.5rem; +} + +.pt-3 { + padding-top: 0.75rem; +} + +.pt-7 { + padding-top: 1.75rem; +} + +.pt-9 { + padding-top: 2.25rem; +} + .text-left { text-align: left; } @@ -1704,6 +1843,11 @@ select { line-height: 1rem; } +.text-5xl { + font-size: 3rem; + line-height: 1; +} + .font-bold { font-weight: 700; } @@ -1806,6 +1950,11 @@ select { color: rgb(255 255 255 / var(--tw-text-opacity)); } +.text-gray-300 { + --tw-text-opacity: 1; + color: rgb(209 213 219 / var(--tw-text-opacity)); +} + .underline { text-decoration-line: underline; } @@ -2171,6 +2320,19 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { position: absolute; } + .md\:bottom-28 { + bottom: 7rem; + } + + .md\:right-12 { + right: 3rem; + } + + .md\:my-24 { + margin-top: 6rem; + margin-bottom: 6rem; + } + .md\:mt-0 { margin-top: 0px; } @@ -2179,6 +2341,10 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { margin-top: 6rem; } + .md\:mt-32 { + margin-top: 8rem; + } + .md\:block { display: block; } @@ -2199,6 +2365,26 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { height: 3rem; } + .md\:h-\[200px\] { + height: 200px; + } + + .md\:h-\[300px\] { + height: 300px; + } + + .md\:h-\[400px\] { + height: 400px; + } + + .md\:h-\[40px\] { + height: 40px; + } + + .md\:h-\[410px\] { + height: 410px; + } + .md\:w-1\/2 { width: 50%; } @@ -2235,6 +2421,26 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { width: 70%; } + .md\:w-8\/12 { + width: 66.666667%; + } + + .md\:w-\[40\%\] { + width: 40%; + } + + .md\:w-\[40px\] { + width: 40px; + } + + .md\:w-\[50\%\] { + width: 50%; + } + + .md\:w-\[60\%\] { + width: 60%; + } + .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } @@ -2275,6 +2481,16 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { padding: 2rem; } + .md\:px-10 { + padding-left: 2.5rem; + padding-right: 2.5rem; + } + + .md\:px-4 { + padding-left: 1rem; + padding-right: 1rem; + } + .md\:pl-4 { padding-left: 1rem; } @@ -2291,6 +2507,50 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { padding-right: 12rem; } + .md\:pl-10 { + padding-left: 2.5rem; + } + + .md\:pl-12 { + padding-left: 3rem; + } + + .md\:pl-3 { + padding-left: 0.75rem; + } + + .md\:pl-5 { + padding-left: 1.25rem; + } + + .md\:pr-5 { + padding-right: 1.25rem; + } + + .md\:pt-0 { + padding-top: 0px; + } + + .md\:pt-10 { + padding-top: 2.5rem; + } + + .md\:pt-12 { + padding-top: 3rem; + } + + .md\:pt-6 { + padding-top: 1.5rem; + } + + .md\:pt-8 { + padding-top: 2rem; + } + + .md\:pt-9 { + padding-top: 2.25rem; + } + .md\:text-left { text-align: left; } @@ -2325,9 +2585,27 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { line-height: 1.25rem; } + .md\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; + } + + .md\:text-xs { + font-size: 0.75rem; + line-height: 1rem; + } + .md\:font-bold { font-weight: 700; } + + .md\:font-medium { + font-weight: 500; + } + + .md\:font-semibold { + font-weight: 600; + } } @media (min-width: 1024px) { @@ -2347,6 +2625,20 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { right: 0px; } + .lg\:right-20 { + right: 5rem; + } + + .lg\:my-20 { + margin-top: 5rem; + margin-bottom: 5rem; + } + + .lg\:my-32 { + margin-top: 8rem; + margin-bottom: 8rem; + } + .lg\:mb-2 { margin-bottom: 0.5rem; } @@ -2355,6 +2647,10 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { margin-bottom: 8rem; } + .lg\:mt-32 { + margin-top: 8rem; + } + .lg\:flex { display: flex; } @@ -2375,6 +2671,18 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { height: 90vh; } + .lg\:h-\[200px\] { + height: 200px; + } + + .lg\:h-\[400px\] { + height: 400px; + } + + .lg\:h-\[60px\] { + height: 60px; + } + .lg\:w-1\/3 { width: 33.333333%; } @@ -2403,6 +2711,14 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { width: 100%; } + .lg\:w-52 { + width: 13rem; + } + + .lg\:w-\[60px\] { + width: 60px; + } + .lg\:max-w-full { max-width: 100%; } @@ -2450,6 +2766,16 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { padding-bottom: 0px; } + .lg\:px-20 { + padding-left: 5rem; + padding-right: 5rem; + } + + .lg\:py-8 { + padding-top: 2rem; + padding-bottom: 2rem; + } + .lg\:pl-2 { padding-left: 0.5rem; } @@ -2462,6 +2788,42 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { padding-top: 6rem; } + .lg\:pb-6 { + padding-bottom: 1.5rem; + } + + .lg\:pl-24 { + padding-left: 6rem; + } + + .lg\:pl-5 { + padding-left: 1.25rem; + } + + .lg\:pr-6 { + padding-right: 1.5rem; + } + + .lg\:pt-10 { + padding-top: 2.5rem; + } + + .lg\:pt-16 { + padding-top: 4rem; + } + + .lg\:pt-20 { + padding-top: 5rem; + } + + .lg\:pt-8 { + padding-top: 2rem; + } + + .lg\:pt-9 { + padding-top: 2.25rem; + } + .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; @@ -2482,6 +2844,16 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { line-height: 1.75rem; } + .lg\:text-2xl { + font-size: 1.5rem; + line-height: 2rem; + } + + .lg\:text-lg { + font-size: 1.125rem; + line-height: 1.75rem; + } + .lg\:font-bold { font-weight: 700; } @@ -2513,5 +2885,25 @@ input[type="radio"]:focus,input[type="checkbox"]:focus { .xl\:pl-12 { padding-left: 3rem; } + + .xl\:pr-12 { + padding-right: 3rem; + } + + .xl\:text-5xl { + font-size: 3rem; + line-height: 1; + } + + .xl\:text-xl { + font-size: 1.25rem; + line-height: 1.75rem; + } +} + +@media (min-width: 1536px) { + .\32xl\:pr-16 { + padding-right: 4rem; + } }