blob: 6b27745c4f38d304bde2379880039f2091fdfcd0 [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;
16 border-radius: 32px;
17
18 border-radius: 32px;
19 transition: 0.5s ease-in-out;
20}
21
22.group {
23 display: flex;
24 flex-direction: column;
25 justify-content: top;
26 align-items: center;
27
28 background-color: var(--card-background-color);
29 filter: var(--card-filter);
30 backdrop-filter: blur(7px);
31 border-radius: 32px;
32
33 width: 64px;
34 margin-bottom: 20px;
35 padding-top: 7px;
36}
37
38.headerIcon {
39 height: 64px;
40 width: 64px;
41 margin-bottom: 20px;
42 margin-right: 0;
43 margin-top: -7px;
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;
81 }
82 .headerIcon {
83 height: 64px;
84 width: 64px;
85 margin-top: 12px;
86 }
87 .containerOpen {
88 max-width: 550px;
89 max-height: 64px;
90 }
91 .icon {
92 height: 50px;
93 width: 50px;
94 margin-left: 5px;
95 }
96}