pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 1 | .backgroundImage { |
| 2 | position: absolute; |
pineafan | 74a6375 | 2021-09-04 21:46:01 +0100 | [diff] [blame] | 3 | bottom: -10px; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 4 | left: -3px; |
| 5 | width: calc(100% + 6px); |
| 6 | border-radius: 0 0 16.5px 16.5px; |
pineafan | 69adcb8 | 2021-11-03 21:29:03 +0000 | [diff] [blame^] | 7 | filter: var(--theme-ui-colors-cardFilter); |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 8 | } |
| 9 | |
| 10 | .header { |
| 11 | width: 100vw; |
| 12 | height: 100vh; |
| 13 | position: relative; |
| 14 | overflow: hidden; |
pineafan | 69adcb8 | 2021-11-03 21:29:03 +0000 | [diff] [blame^] | 15 | filter: var(--theme-ui-colors-cardFilter); |
| 16 | display: flex; |
| 17 | flex-direction: column; |
| 18 | justify-content: center; |
| 19 | align-items: center; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 20 | } |
| 21 | |
| 22 | .panel { |
| 23 | position: absolute; |
| 24 | overflow: hidden; |
| 25 | width: min(76%, 800px); |
| 26 | height: auto; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 27 | border-radius: 16.5px; |
pineafan | 69adcb8 | 2021-11-03 21:29:03 +0000 | [diff] [blame^] | 28 | background-color: var(--theme-ui-colors-cardBackground); |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 29 | backdrop-filter: blur(7px); |
Samuel Shuert | 604e31d | 2021-09-02 16:06:20 -0500 | [diff] [blame] | 30 | padding-top: 30px; |
| 31 | padding-bottom: 40px; |
pineafan | 0e1ff24 | 2021-09-03 22:16:18 +0100 | [diff] [blame] | 32 | padding-left: 10px; |
| 33 | padding-right: 10px; |
pineafan | 69adcb8 | 2021-11-03 21:29:03 +0000 | [diff] [blame^] | 34 | margin-bottom: 10%; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | .title { |
| 38 | width: 100%; |
| 39 | text-align: center; |
| 40 | font-weight: 100; |
Samuel Shuert | 604e31d | 2021-09-02 16:06:20 -0500 | [diff] [blame] | 41 | margin-top: 0px; |
| 42 | margin-bottom: -20px; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 43 | font-size: max(2em, 4vw); |
pineafan | 69adcb8 | 2021-11-03 21:29:03 +0000 | [diff] [blame^] | 44 | color: var(--theme-ui-colors-text); |
Samuel Shuert | 835c71f | 2021-09-03 15:49:26 -0500 | [diff] [blame] | 45 | word-break: break-word; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 46 | } |
| 47 | |
| 48 | .subtext { |
Samuel Shuert | 604e31d | 2021-09-02 16:06:20 -0500 | [diff] [blame] | 49 | margin-bottom: 0px; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 50 | width: 100%; |
| 51 | text-align: center; |
| 52 | font-weight: 100; |
| 53 | font-size: max(1.5em, 1.5vw); |
pineafan | 69adcb8 | 2021-11-03 21:29:03 +0000 | [diff] [blame^] | 54 | color: var(--theme-ui-colors-text); |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | .subtextExtra { |
| 58 | margin-bottom: 80px; |
| 59 | } |
| 60 | |
| 61 | @keyframes arrow-slide { |
| 62 | 0% { |
| 63 | -webkit-transform: translateY(0); |
| 64 | transform: translateY(0); |
| 65 | } |
| 66 | 50% { |
| 67 | -webkit-transform: translateY(-1em); |
| 68 | transform: translateY(-1em); |
| 69 | } |
| 70 | 100% { |
| 71 | -webkit-transform: translateY(0); |
| 72 | transform: translateY(0); |
| 73 | } |
| 74 | } |
| 75 | .arrow { |
| 76 | -webkit-animation: arrow-slide 2s ease-in-out infinite both; |
| 77 | animation: arrow-slide 2s ease-in-out infinite both; |
| 78 | } |
| 79 | |
| 80 | .arrowSpan { |
| 81 | position: absolute; |
| 82 | bottom: 100px; |
| 83 | width: 100%; |
| 84 | text-align: center; |
| 85 | } |
| 86 | |
| 87 | .arrowHidden { |
| 88 | display: none; |
| 89 | } |
| 90 | |
| 91 | .buttonLayout { |
| 92 | display: flex; |
| 93 | flex-direction: row; |
| 94 | justify-content: flex-end; |
| 95 | align-items: center; |
Samuel Shuert | 604e31d | 2021-09-02 16:06:20 -0500 | [diff] [blame] | 96 | flex-wrap: wrap; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 97 | padding: 0px; |
| 98 | position: absolute; |
| 99 | bottom: 5px; |
| 100 | right: 5px; |
| 101 | } |
| 102 | |
| 103 | .button { |
| 104 | display: flex; |
| 105 | flex-direction: row; |
| 106 | align-items: flex-start; |
| 107 | justify-content: right; |
| 108 | position: static; |
| 109 | flex: none; |
| 110 | order: 1; |
| 111 | flex-grow: 0; |
| 112 | |
| 113 | margin: 5px; |
| 114 | padding: 5px 10px; |
| 115 | border-radius: 8px; |
| 116 | } |