Philipp Schrader | 8058743 | 2022-03-05 15:41:22 -0800 | [diff] [blame] | 1 | * { |
Philipp Schrader | 817cce3 | 2022-03-26 15:00:00 -0700 | [diff] [blame] | 2 | padding: 10px; |
Alex Perry | bb3d206 | 2022-03-05 18:14:33 -0800 | [diff] [blame] | 3 | } |
| 4 | |
Philipp Schrader | 8058743 | 2022-03-05 15:41:22 -0800 | [diff] [blame] | 5 | textarea { |
Kiran Haywood | 85c2088 | 2022-11-30 21:40:27 -0800 | [diff] [blame] | 6 | width: 350px; |
| 7 | height: 180px; |
Alex Perry | bb3d206 | 2022-03-05 18:14:33 -0800 | [diff] [blame] | 8 | } |
Philipp Schrader | 8b8ed67 | 2022-03-05 18:08:50 -0800 | [diff] [blame] | 9 | |
Sabina Leaver | bdb7ce0 | 2022-03-06 15:51:17 -0800 | [diff] [blame] | 10 | button { |
| 11 | touch-action: manipulation; |
Philipp Schrader | 8b8ed67 | 2022-03-05 18:08:50 -0800 | [diff] [blame] | 12 | } |
emilym | 38d08ba | 2022-10-22 15:25:01 -0700 | [diff] [blame] | 13 | |
Emily Markova | dcadcb6 | 2024-02-03 13:07:17 -0800 | [diff] [blame] | 14 | .row ul div span { |
| 15 | padding: 0px; |
emilym | 38d08ba | 2022-10-22 15:25:01 -0700 | [diff] [blame] | 16 | } |
Emily Markova | f4b06a2 | 2023-05-10 17:44:09 -0700 | [diff] [blame] | 17 | |
Emily Markova | dcadcb6 | 2024-02-03 13:07:17 -0800 | [diff] [blame] | 18 | input label { |
Emily Markova | f4b06a2 | 2023-05-10 17:44:09 -0700 | [diff] [blame] | 19 | padding: 0px; |
| 20 | } |
Emily Markova | 6079e2f | 2024-02-17 13:17:24 -0800 | [diff] [blame] | 21 | |
| 22 | #EndGame > div > label { |
Emily Markova | 040123c | 2024-02-27 09:48:37 -0800 | [diff] [blame] | 23 | padding: 0px; |
| 24 | } |
| 25 | |
| 26 | .button_row { |
| 27 | display: flex; |
| 28 | width: 90vw; |
| 29 | justify-content: space-between; |
Emily Markova | 6079e2f | 2024-02-17 13:17:24 -0800 | [diff] [blame] | 30 | } |
Philipp Schrader | e2e27ff | 2024-02-25 22:08:55 -0800 | [diff] [blame^] | 31 | |
| 32 | .qr-container { |
| 33 | width: 100%; |
| 34 | display: flex; |
| 35 | justify-content: center; |
| 36 | padding: 0px; |
| 37 | } |
| 38 | |
| 39 | .qrcode-buttons > li.page-item { |
| 40 | padding: 0px; |
| 41 | } |
| 42 | |
| 43 | /* Using deprecated ::ng-deep here, but couldn't find a better way to do it. |
| 44 | * The qrcode container generates a canvas without any style markers or |
| 45 | * classes. Angular's view encapsulation prevents this style from applying. |
| 46 | * Maybe https://developer.mozilla.org/en-US/docs/Web/CSS/::slotted ? */ |
| 47 | :host ::ng-deep .qr-container canvas { |
| 48 | /* Make the QR code take up as much space as possible. Can't take up more |
| 49 | * than the screen size, however, because you can't scan a QR code while |
| 50 | * scrolling. It needs to be fully visibile. */ |
| 51 | width: 100% !important; |
| 52 | height: 100% !important; |
| 53 | aspect-ratio: 1 / 1; |
| 54 | } |
| 55 | |
| 56 | /* Make the UI a little more compact. The QR code itself already has a good |
| 57 | * amount of margin. */ |
| 58 | |
| 59 | .qrcode-nav { |
| 60 | padding: 0px; |
| 61 | } |
| 62 | |
| 63 | .qrcode-buttons { |
| 64 | padding: 0px; |
| 65 | margin: 0px; |
| 66 | } |
| 67 | |
| 68 | .qrcode { |
| 69 | padding: 0px; |
| 70 | } |