pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 1 | .container { |
| 2 | display: flex; |
| 3 | flex-direction: column; |
| 4 | justify-content: top; |
| 5 | align-items: center; |
| 6 | |
| 7 | position: fixed; |
| 8 | top: 0; |
| 9 | left: 0; |
| 10 | overflow: hidden; |
| 11 | margin: 20px; |
| 12 | |
| 13 | width: 64px; |
| 14 | max-height: 64px; |
| 15 | height: auto; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 16 | |
| 17 | border-radius: 32px; |
| 18 | transition: 0.5s ease-in-out; |
| 19 | } |
| 20 | |
| 21 | .group { |
| 22 | display: flex; |
| 23 | flex-direction: column; |
| 24 | justify-content: top; |
| 25 | align-items: center; |
| 26 | |
| 27 | background-color: var(--card-background-color); |
Samuel Shuert | 52f3777 | 2021-09-02 12:29:40 -0500 | [diff] [blame] | 28 | backdrop-filter: blur(7px), brightness(0.1); |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 29 | border-radius: 32px; |
| 30 | |
| 31 | width: 64px; |
| 32 | margin-bottom: 20px; |
| 33 | padding-top: 7px; |
| 34 | } |
| 35 | |
| 36 | .headerIcon { |
| 37 | height: 64px; |
| 38 | width: 64px; |
| 39 | margin-bottom: 20px; |
| 40 | margin-right: 0; |
| 41 | margin-top: -7px; |
Samuel Shuert | 604e31d | 2021-09-02 16:06:20 -0500 | [diff] [blame] | 42 | |
| 43 | cursor: pointer; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | .icon { |
| 47 | height: 50px; |
| 48 | width: 50px; |
| 49 | margin-bottom: 5px; |
| 50 | } |
| 51 | |
| 52 | .containerOpen { |
| 53 | max-height: 550px; |
| 54 | } |
| 55 | |
| 56 | @media screen and (min-width: 550px) { |
| 57 | .container { |
| 58 | flex-direction: row; |
| 59 | justify-content: left; |
| 60 | |
| 61 | margin: 20px; |
| 62 | |
| 63 | height: 64px; |
| 64 | max-width: 64px; |
| 65 | width: auto; |
| 66 | border-radius: 32px; |
| 67 | |
| 68 | border-radius: 32px; |
| 69 | transition: 0.5s ease-in-out; |
| 70 | } |
| 71 | .group { |
| 72 | flex-direction: row; |
| 73 | justify-content: left; |
| 74 | |
| 75 | height: 64px; |
| 76 | width: auto; |
| 77 | padding-right: 7px; |
| 78 | margin-bottom: 0; |
| 79 | padding-top: 7px; |
| 80 | margin-right: 20px; |
Samuel Shuert | 52f3777 | 2021-09-02 12:29:40 -0500 | [diff] [blame] | 81 | padding-left: 3px; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 82 | } |
| 83 | .headerIcon { |
| 84 | height: 64px; |
| 85 | width: 64px; |
| 86 | margin-top: 12px; |
Samuel Shuert | 52f3777 | 2021-09-02 12:29:40 -0500 | [diff] [blame] | 87 | margin-left: -3px; |
pineafan | a5ce910 | 2021-09-02 17:21:31 +0100 | [diff] [blame] | 88 | } |
| 89 | .containerOpen { |
| 90 | max-width: 550px; |
| 91 | max-height: 64px; |
| 92 | } |
| 93 | .icon { |
| 94 | height: 50px; |
| 95 | width: 50px; |
| 96 | margin-left: 5px; |
| 97 | } |
| 98 | } |