blob: 37ab894fa237732c26329fd8ef05242c499e2484 [file] [log] [blame]
pineafana5ce9102021-09-02 17:21:31 +01001.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;
pineafana5ce9102021-09-02 17:21:31 +010016
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 Shuert52f37772021-09-02 12:29:40 -050028 backdrop-filter: blur(7px), brightness(0.1);
pineafana5ce9102021-09-02 17:21:31 +010029 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 Shuert604e31d2021-09-02 16:06:20 -050042
43 cursor: pointer;
pineafana5ce9102021-09-02 17:21:31 +010044}
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 Shuert52f37772021-09-02 12:29:40 -050081 padding-left: 3px;
pineafana5ce9102021-09-02 17:21:31 +010082 }
83 .headerIcon {
84 height: 64px;
85 width: 64px;
86 margin-top: 12px;
Samuel Shuert52f37772021-09-02 12:29:40 -050087 margin-left: -3px;
pineafana5ce9102021-09-02 17:21:31 +010088 }
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}