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%; |
| 18 | filter: var(--theme-ui-colors-cardFilter); |
| 19 | transition: filter 0.3s ease-in-out; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 20 | } |
| 21 | |
| 22 | .header { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 23 | width: 100vw; |
| 24 | position: relative; |
| 25 | overflow: hidden; |
| 26 | transition: filter 0.3s ease-in-out; |
| 27 | display: flex; |
| 28 | flex-direction: column; |
| 29 | justify-content: center; |
| 30 | align-items: center; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 31 | } |
| 32 | |
| 33 | .panel { |
| 34 | position: relative; |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 35 | overflow: hidden; |
pineafan | d94d40e | 2022-10-23 19:55:29 +0100 | [diff] [blame] | 36 | width: min(calc(100vw - 40px), 750px); |
| 37 | border-radius: 25px; |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 38 | background-color: var(--theme-ui-colors-cardBackground); |
| 39 | transition: background-color 0.3s ease-in-out; |
| 40 | backdrop-filter: blur(7px); |
| 41 | padding-top: 30px; |
| 42 | padding-bottom: 40px; |
| 43 | padding-left: 10px; |
| 44 | padding-right: 10px; |
| 45 | margin-top: 20px; |
| 46 | margin-bottom: 20vh; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 47 | } |
| 48 | |
| 49 | .title { |
| 50 | width: 100%; |
| 51 | text-align: center; |
| 52 | font-weight: 100; |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 53 | margin-top: 0px; |
| 54 | margin-bottom: -20px; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 55 | font-size: 3em; |
| 56 | color: var(--theme-ui-colors-text); |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 57 | transition: color 0.3s ease-in-out; |
| 58 | word-break: break-word; |
| 59 | font-variant-ligatures: none; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | .subtext { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 63 | margin-bottom: 0px; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 64 | width: 100%; |
| 65 | text-align: center; |
| 66 | font-weight: 100; |
| 67 | font-size: 1.5em; |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 68 | margin-top: 50px; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 69 | color: var(--theme-ui-colors-text); |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 70 | transition: color 0.3s ease-in-out; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 71 | } |
| 72 | |
| 73 | .subtextExtra { |
| 74 | margin-bottom: 40px; |
| 75 | } |
| 76 | |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 77 | .buttonLayout { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 78 | display: flex; |
| 79 | flex-direction: row; |
| 80 | justify-content: flex-start; |
| 81 | align-items: center; |
| 82 | flex-wrap: nowrap; |
| 83 | height: fit-content; |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 84 | } |
| 85 | .buttonOverflow { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 86 | display: flex; |
| 87 | flex-direction: row; |
| 88 | justify-content: flex-end; |
| 89 | align-items: center; |
| 90 | overflow-x: hidden; |
| 91 | flex-wrap: nowrap; |
| 92 | position: absolute; |
| 93 | bottom: 5px; |
| 94 | right: 5px; |
| 95 | width: calc(100% - 10px); |
| 96 | height: auto; |
| 97 | border-radius: 10px; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | .button { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 101 | display: flex; |
| 102 | flex-direction: row; |
| 103 | align-items: flex-end; |
| 104 | justify-content: right; |
| 105 | position: static; |
| 106 | flex: none; |
| 107 | order: 1; |
| 108 | flex-grow: 0; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 109 | |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 110 | margin: 5px; |
| 111 | padding: 5px 10px; |
| 112 | border-radius: 8px; |
pineafan | 15b813d | 2022-02-13 10:06:09 +0000 | [diff] [blame] | 113 | } |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 114 | |
| 115 | .titleContainer { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 116 | display: flex; |
| 117 | flex-direction: row; |
| 118 | justify-content: center; |
| 119 | align-items: center; |
| 120 | flex-wrap: wrap; |
| 121 | padding: 0px; |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | .headerImage { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 125 | width: auto; |
| 126 | height: 64px; |
| 127 | object-fit: cover; |
| 128 | object-position: center; |
| 129 | transition: filter 0.3s ease-in-out; |
| 130 | margin-bottom: 20px; |
pineafan | 04e5e35 | 2022-10-25 19:03:04 +0100 | [diff] [blame^] | 131 | user-select: none; |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 132 | } |
| 133 | |
| 134 | .indicator { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame] | 135 | height: auto; |
| 136 | width: 24px; |
| 137 | margin-inline: 5px; |
| 138 | padding: 0; |
pineafan | ff3d452 | 2022-05-06 19:51:02 +0100 | [diff] [blame] | 139 | } |