pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 1 | .panel { |
| 2 | min-height: 50px; |
| 3 | padding: 10px; |
| 4 | padding-block: 30px; |
| 5 | width: 100%; |
| 6 | display: flex; |
| 7 | flex-direction: column; |
pineafan | 4627016 | 2022-02-13 12:06:17 +0000 | [diff] [blame] | 8 | justify-content: top; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 9 | align-items: center; |
| 10 | width: 100%; |
| 11 | gap: 10px; |
| 12 | |
| 13 | background-color: var(--theme-ui-colors-panelColor); |
pineafan | d94d40e | 2022-10-23 19:55:29 +0100 | [diff] [blame^] | 14 | transition: background-color 0.3s ease-in-out !important; |
| 15 | |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 16 | border-radius: 20px; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 17 | } |
| 18 | |
| 19 | .doublePanel { |
| 20 | width: 100%; |
| 21 | display: grid; |
| 22 | grid-template-columns: 1fr 1fr; |
| 23 | grid-gap: 20px; |
| 24 | column-width: 100%; |
| 25 | } |
| 26 | |
| 27 | @media (max-width: 900px) { |
| 28 | .doublePanel { |
| 29 | display: flex; |
| 30 | flex-direction: column; |
| 31 | justify-content: center; |
| 32 | align-items: center; |
| 33 | width: 100%; |
| 34 | gap: 20px; |
| 35 | } |
| 36 | .halfWidth { |
| 37 | width: 100%; |
| 38 | } |
| 39 | } |
| 40 | |
| 41 | |
| 42 | .container { |
| 43 | display: flex; |
| 44 | flex-direction: column; |
| 45 | justify-content: center; |
| 46 | align-items: center; |
| 47 | gap: 20px; |
pineafan | 69f4c67 | 2022-10-23 08:50:36 +0100 | [diff] [blame] | 48 | padding-block: 20px; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 49 | padding-inline: 20px; |
pineafan | 69f4c67 | 2022-10-23 08:50:36 +0100 | [diff] [blame] | 50 | background-color: var(--theme-ui-colors-background); |
pineafan | d94d40e | 2022-10-23 19:55:29 +0100 | [diff] [blame^] | 51 | |
| 52 | transition: 0.3s ease-in-out background-color; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 53 | } |
| 54 | |
| 55 | .title { |
| 56 | width: 100%; |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 57 | font-size: min(max(2em, 3.25vw), 4em); |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 58 | margin: 0; |
| 59 | color: var(--theme-ui-colors-text); |
| 60 | transition: color 0.3s ease-in-out; |
| 61 | font-weight: lighter; |
| 62 | text-align: center; |
pineafan | 4627016 | 2022-02-13 12:06:17 +0000 | [diff] [blame] | 63 | word-break: break-word; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | .subtitle { |
| 67 | width: 100%; |
| 68 | font-size: max(2em, 2vw); |
| 69 | color: var(--theme-ui-colors-text); |
| 70 | transition: color 0.3s ease-in-out; |
| 71 | font-weight: lighter; |
| 72 | text-align: center; |
| 73 | word-break: break-word; |
| 74 | margin-block: 0; |
| 75 | } |
| 76 | |
| 77 | .text { |
| 78 | width: 100%; |
| 79 | text-align: center; |
| 80 | padding-inline: "15%"; |
| 81 | font-size: 120%; |
| 82 | color: var(--card-text-color); |
| 83 | transition: color 0.3s ease-in-out; |
| 84 | margin-top: 0; |
| 85 | margin: 10px |
| 86 | } |
| 87 | |
| 88 | .divider { |
| 89 | width: 75%; |
pineafan | d94d40e | 2022-10-23 19:55:29 +0100 | [diff] [blame^] | 90 | height: 6px; |
| 91 | min-height: 6px; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 92 | border-radius: 100vw; |
| 93 | margin-block: 10px; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 94 | transition: background-color 0.3s ease-in-out; |
| 95 | } |