pineafan | a0e4b9b | 2021-11-02 21:10:49 +0000 | [diff] [blame] | 1 | .form { |
| 2 | display: flex; |
| 3 | flex-direction: column; |
| 4 | align-items: center; |
| 5 | justify-content: center; |
| 6 | width: 100%; |
| 7 | } |
| 8 | |
| 9 | .header { |
| 10 | width: 100%; |
| 11 | text-align: center; |
| 12 | margin-block: 20px; |
| 13 | font-size: 20px; |
| 14 | } |
| 15 | |
| 16 | .title { |
| 17 | font-size: 30px; |
| 18 | line-height: 30px; |
| 19 | font-weight: lighter; |
| 20 | color: var(--card-text-color); |
| 21 | margin-block: 0; |
| 22 | } |
| 23 | |
| 24 | .description { |
| 25 | font-size: 20px; |
| 26 | line-height: 20px; |
| 27 | font-weight: lighter; |
| 28 | color: var(--card-text-color); |
| 29 | margin-block: 0; |
| 30 | } |
| 31 | |
| 32 | .body { |
| 33 | width: 100%; |
| 34 | display: flex; |
| 35 | flex-direction: column; |
| 36 | align-items: center; |
| 37 | justify-content: center; |
| 38 | gap: 1.5rem; |
| 39 | } |
| 40 | |
| 41 | .questionContainer { |
| 42 | background-color: var(--card-background-color); |
| 43 | border: solid 3px var(--card-border-color); |
| 44 | width: 75%; |
| 45 | max-width: 750px; |
| 46 | border-radius: 10px; |
| 47 | |
| 48 | display: flex; |
| 49 | flex-direction: column; |
| 50 | align-items: left; |
| 51 | justify-content: center; |
| 52 | padding: 20px; |
| 53 | gap: 5px; |
| 54 | |
| 55 | transition: 0.3s; |
| 56 | } |
| 57 | |
| 58 | .hr { |
| 59 | width: 100%; |
| 60 | border: solid 2px transparent; |
| 61 | } |
| 62 | |
| 63 | .input { |
| 64 | background-color: var(--card-background-color); |
| 65 | border: solid 3px var(--card-border-color); |
pineafan | 31d5d60 | 2021-11-13 21:10:30 +0000 | [diff] [blame] | 66 | color: var(--card-text-color); |
pineafan | a0e4b9b | 2021-11-02 21:10:49 +0000 | [diff] [blame] | 67 | padding-block: 5px; |
| 68 | padding-inline: 5px; |
| 69 | border-radius: 7px; |
| 70 | font-size: 17px; |
| 71 | resize: vertical; |
| 72 | min-height: 37px; |
| 73 | } |
| 74 | .input:focus { |
| 75 | outline: none; |
| 76 | } |
| 77 | |
| 78 | .errorContainer { |
pineafan | aa9c4fd | 2022-06-10 19:58:10 +0100 | [diff] [blame^] | 79 | width: 100%; |
| 80 | height: 0px; |
| 81 | transition: 0.3s; |
| 82 | overflow: hidden; |
pineafan | a0e4b9b | 2021-11-02 21:10:49 +0000 | [diff] [blame] | 83 | margin-top: 5px; |
| 84 | margin-bottom: 0; |
| 85 | } |