internal pages completed

This commit is contained in:
prospect
2024-01-16 21:51:39 -05:00
parent a1527fcf30
commit d0c3923e4c
51 changed files with 1284 additions and 92 deletions

View File

@@ -1428,6 +1428,10 @@ select {
position: relative;
}
.inset-0 {
inset: 0px;
}
.bottom-0 {
bottom: 0px;
}
@@ -1440,6 +1444,14 @@ select {
top: 0px;
}
.left-0 {
left: 0px;
}
.left-1\/2 {
left: 50%;
}
.z-20 {
z-index: 20;
}
@@ -1520,6 +1532,10 @@ select {
aspect-ratio: 16/9;
}
.h-1 {
height: 0.25rem;
}
.h-20 {
height: 5rem;
}
@@ -1532,8 +1548,8 @@ select {
height: 14rem;
}
.h-60 {
height: 15rem;
.h-64 {
height: 16rem;
}
.h-full {
@@ -1544,6 +1560,14 @@ select {
height: 100vh;
}
.h-96 {
height: 24rem;
}
.h-36 {
height: 9rem;
}
.w-1\/12 {
width: 8.333333%;
}
@@ -1572,6 +1596,10 @@ select {
width: 100%;
}
.w-3\/4 {
width: 75%;
}
.max-w-64 {
max-width: 16rem;
}
@@ -1584,6 +1612,10 @@ select {
max-width: 36rem;
}
.max-w-full {
max-width: 100%;
}
.flex-1 {
flex: 1 1 0%;
}
@@ -1605,6 +1637,10 @@ select {
list-style-type: disc;
}
.list-none {
list-style-type: none;
}
.grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
@@ -1621,6 +1657,10 @@ select {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
.grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.flex-col {
flex-direction: column;
}
@@ -1674,6 +1714,12 @@ select {
margin-left: calc(1rem * (1 - var(--tw-space-x-reverse)));
}
.space-y-1 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(0.25rem * (1 - var(--tw-space-y-reverse)));
margin-bottom: calc(0.25rem * var(--tw-space-y-reverse));
}
.space-y-2 > :not([hidden]) ~ :not([hidden]) {
--tw-space-y-reverse: 0;
margin-top: calc(0.5rem * (1 - var(--tw-space-y-reverse)));
@@ -1721,6 +1767,11 @@ select {
border-color: rgb(10 28 50/var(--tw-border-opacity));
}
.border-black {
--tw-border-opacity: 1;
border-color: rgb(0 0 0/var(--tw-border-opacity));
}
.bg-black {
--tw-bg-opacity: 1;
background-color: rgb(0 0 0/var(--tw-bg-opacity));
@@ -1791,6 +1842,11 @@ select {
background-color: rgb(24 87 76/var(--tw-bg-opacity));
}
.bg-green-900 {
--tw-bg-opacity: 1;
background-color: rgb(6 43 30/var(--tw-bg-opacity));
}
.bg-red-500 {
--tw-bg-opacity: 1;
background-color: rgb(149 29 32/var(--tw-bg-opacity));
@@ -1811,11 +1867,6 @@ select {
background-color: rgb(245 224 162/var(--tw-bg-opacity));
}
.bg-yellow-500 {
--tw-bg-opacity: 1;
background-color: rgb(231 160 38/var(--tw-bg-opacity));
}
.bg-opacity-40 {
--tw-bg-opacity: 0.4;
}
@@ -1825,11 +1876,6 @@ select {
object-fit: cover;
}
.object-center {
-o-object-position: center;
object-position: center;
}
.p-2 {
padding: 0.5rem;
}
@@ -1838,6 +1884,10 @@ select {
padding: 1rem;
}
.p-8 {
padding: 2rem;
}
.px-12 {
padding-left: 3rem;
padding-right: 3rem;
@@ -1893,6 +1943,16 @@ select {
padding-bottom: 2rem;
}
.px-20 {
padding-left: 5rem;
padding-right: 5rem;
}
.px-24 {
padding-left: 6rem;
padding-right: 6rem;
}
.pb-24 {
padding-bottom: 6rem;
}
@@ -1901,6 +1961,10 @@ select {
padding-bottom: 7rem;
}
.pb-4 {
padding-bottom: 1rem;
}
.pb-8 {
padding-bottom: 2rem;
}
@@ -1925,6 +1989,10 @@ select {
padding-top: 1rem;
}
.pt-2 {
padding-top: 0.5rem;
}
.text-center {
text-align: center;
}
@@ -2020,6 +2088,11 @@ select {
color: rgb(206 219 218/var(--tw-text-opacity));
}
.text-cadet-400 {
--tw-text-opacity: 1;
color: rgb(174 194 191/var(--tw-text-opacity));
}
.text-cadet-900 {
--tw-text-opacity: 1;
color: rgb(29 77 58/var(--tw-text-opacity));
@@ -2128,9 +2201,15 @@ html {
.md\:h-56 {
height: 14rem;
}
.md\:grid-cols-3 {
grid-template-columns: repeat(3, minmax(0, 1fr));
}
.md\:justify-center {
justify-content: center;
}
.md\:text-center {
text-align: center;
}
.md\:text-2xl {
font-size: 1.5rem;
line-height: 2rem;
@@ -2146,9 +2225,15 @@ html {
.lg\:h-1\/3 {
height: 33.333333%;
}
.lg\:h-96 {
height: 24rem;
}
.lg\:h-full {
height: 100%;
}
.lg\:h-64 {
height: 16rem;
}
.lg\:w-1\/2 {
width: 50%;
}
@@ -2167,9 +2252,15 @@ html {
.lg\:max-w-3xl {
max-width: 48rem;
}
.lg\:flex-none {
flex: none;
}
.lg\:grid-cols-2 {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lg\:grid-cols-6 {
grid-template-columns: repeat(6, minmax(0, 1fr));
}
.lg\:flex-col {
flex-direction: column;
}
@@ -2184,9 +2275,10 @@ html {
margin-right: calc(2rem * var(--tw-space-x-reverse));
margin-left: calc(2rem * (1 - var(--tw-space-x-reverse)));
}
.lg\:px-0 {
padding-left: 0px;
padding-right: 0px;
.lg\:space-x-0 > :not([hidden]) ~ :not([hidden]) {
--tw-space-x-reverse: 0;
margin-right: calc(0px * var(--tw-space-x-reverse));
margin-left: calc(0px * (1 - var(--tw-space-x-reverse)));
}
.lg\:text-center {
text-align: center;
@@ -2200,6 +2292,9 @@ html {
.xl\:w-4\/12 {
width: 33.333333%;
}
.xl\:w-2\/4 {
width: 50%;
}
}
@media (min-width: 1536px) {
.\32 xl\:w-3\/12 {
@@ -2319,7 +2414,7 @@ body.login {
position: relative;
overflow: hidden;
transition: 0.6s ease-in-out;
padding: 0 1rem;
padding: 0 0.5rem;
}
.accordion-title {
margin: 0 35px 0 0;
@@ -2531,6 +2626,27 @@ body.login {
background-color: var(--cadet-200); /* Odd row background color */
}
.precautions-columns:nth-child(even) {
background-color: var(--cadet-500); /* Odd row background color */
}
.identity-columns:nth-child(odd) {
background-color: var(--copper-200); /* Odd row background color */
}
.oneca-links-columns:nth-child(odd) {
background-color: var(--copper-200); /* Odd row background color */
}
.tribal-council-logo {
width: 55px;
}
@media (min-width: 1024px) {
.tribal-council-logo {
width: auto;
}
}
.flip {
transform: scaleX(-1);
}