pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 1 | .backgroundImage { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 2 | position: absolute; |
| 3 | bottom: 0; |
| 4 | /* bottom: 50vh; |
| 5 | transform: translateY(50%); */ |
| 6 | width: 100%; |
| 7 | filter: var(--theme-ui-colors-cardFilter); |
| 8 | transition: filter 0.3s ease-in-out; |
pineafan | 04e5e35 | 2022-10-25 19:03:04 +0100 | [diff] [blame] | 9 | user-select: none; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 10 | } |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 11 | |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 12 | .backgroundGradient { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 13 | position: absolute; |
| 14 | bottom: 0; |
| 15 | left: 0; |
| 16 | width: 100%; |
| 17 | height: 100%; |
pineafan | 74f1674 | 2022-11-07 21:57:55 +0000 | [diff] [blame] | 18 | border-radius: 0; |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 19 | filter: var(--theme-ui-colors-cardFilter); |
| 20 | transition: filter 0.3s ease-in-out; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 21 | } |
| 22 | |
| 23 | .header { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 24 | width: 100vw; |
| 25 | position: relative; |
| 26 | overflow: hidden; |
pineafan | 74f1674 | 2022-11-07 21:57:55 +0000 | [diff] [blame] | 27 | transition: background-color 0.3s ease-in-out; |
| 28 | background-color: var(--theme-ui-colors-background); |
| 29 | } |
| 30 | |
| 31 | .container { |
| 32 | width: 100%; |
| 33 | height: 100%; |
| 34 | border-radius: 25px; |
| 35 | position: relative; |
| 36 | overflow: hidden; |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 37 | transition: filter 0.3s ease-in-out; |
| 38 | display: flex; |
| 39 | flex-direction: column; |
| 40 | justify-content: center; |
| 41 | align-items: center; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | .panel { |
| 45 | position: relative; |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 46 | overflow: hidden; |
pineafan | d94d40e | 2022-10-23 19:55:29 +0100 | [diff] [blame] | 47 | width: min(calc(100vw - 40px), 750px); |
| 48 | border-radius: 25px; |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 49 | background-color: var(--theme-ui-colors-cardBackground); |
| 50 | transition: background-color 0.3s ease-in-out; |
| 51 | backdrop-filter: blur(7px); |
| 52 | padding-top: 30px; |
| 53 | padding-bottom: 40px; |
| 54 | padding-left: 10px; |
| 55 | padding-right: 10px; |
| 56 | margin-top: 20px; |
| 57 | margin-bottom: 20vh; |
pineafan | 7bd0ad6 | 2022-10-26 22:11:29 +0100 | [diff] [blame] | 58 | box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25); |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | .title { |
| 62 | width: 100%; |
| 63 | text-align: center; |
| 64 | font-weight: 100; |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 65 | margin-top: 0px; |
| 66 | margin-bottom: -20px; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 67 | font-size: 3em; |
| 68 | color: var(--theme-ui-colors-text); |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 69 | transition: color 0.3s ease-in-out; |
| 70 | word-break: break-word; |
| 71 | font-variant-ligatures: none; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 72 | } |
| 73 | |
| 74 | .subtext { |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 75 | text-align: center; |
| 76 | font-weight: 100; |
| 77 | font-size: 1.5em; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 78 | color: var(--theme-ui-colors-text); |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 79 | transition: color 0.3s ease-in-out; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 80 | } |
| 81 | |
| 82 | .subtextExtra { |
| 83 | margin-bottom: 40px; |
| 84 | } |
| 85 | |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 86 | .buttonLayout { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 87 | display: flex; |
| 88 | flex-direction: row; |
| 89 | justify-content: flex-start; |
| 90 | align-items: center; |
| 91 | flex-wrap: nowrap; |
| 92 | height: fit-content; |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 93 | } |
| 94 | .buttonOverflow { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 95 | display: flex; |
| 96 | flex-direction: row; |
| 97 | justify-content: flex-end; |
| 98 | align-items: center; |
| 99 | overflow-x: hidden; |
| 100 | flex-wrap: nowrap; |
| 101 | position: absolute; |
| 102 | bottom: 5px; |
| 103 | right: 5px; |
| 104 | width: calc(100% - 10px); |
| 105 | height: auto; |
| 106 | border-radius: 10px; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 107 | } |
| 108 | |
| 109 | .button { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 110 | display: flex; |
| 111 | flex-direction: row; |
| 112 | align-items: flex-end; |
| 113 | justify-content: right; |
| 114 | position: static; |
| 115 | flex: none; |
| 116 | order: 1; |
| 117 | flex-grow: 0; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 118 | |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 119 | margin: 5px; |
| 120 | padding: 5px 10px; |
| 121 | border-radius: 8px; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 122 | } |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 123 | |
| 124 | .titleContainer { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 125 | display: flex; |
| 126 | flex-direction: row; |
| 127 | justify-content: center; |
| 128 | align-items: center; |
| 129 | flex-wrap: wrap; |
| 130 | padding: 0px; |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | .headerImage { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 134 | width: auto; |
| 135 | height: 64px; |
| 136 | object-fit: cover; |
| 137 | object-position: center; |
| 138 | transition: filter 0.3s ease-in-out; |
| 139 | margin-bottom: 20px; |
pineafan | 04e5e35 | 2022-10-25 19:03:04 +0100 | [diff] [blame] | 140 | user-select: none; |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 141 | } |
| 142 | |
| 143 | .indicator { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 144 | height: auto; |
| 145 | width: 24px; |
| 146 | margin-inline: 5px; |
| 147 | padding: 0; |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 148 | } |
pineafan | b18f019 | 2022-10-27 22:08:36 +0100 | [diff] [blame] | 149 | |
| 150 | .leftArrow { |
| 151 | transform: rotate(90deg); |
| 152 | } |
| 153 | .rightArrow { |
| 154 | transform: rotate(270deg); |
| 155 | } |
pineafan | 74f1674 | 2022-11-07 21:57:55 +0000 | [diff] [blame] | 156 | |
| 157 | .textBar { |
| 158 | display: flex; |
| 159 | flex-direction: row; |
| 160 | justify-content: center; |
| 161 | align-items: center; |
| 162 | flex-wrap: nowrap; |
| 163 | width: 100%; |
| 164 | min-height: 76px; |
| 165 | margin-bottom: 0px; |
| 166 | margin-top: 25px; |
| 167 | } |