blob: 8436b2af8e89291d7bbdeadf71520b0664378f94 [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;
42}
43
44.icon {
45 height: 50px;
46 width: 50px;
47 margin-bottom: 5px;
48}
49
50.containerOpen {
51 max-height: 550px;
52}
53
54@media screen and (min-width: 550px) {
55 .container {
56 flex-direction: row;
57 justify-content: left;
58
59 margin: 20px;
60
61 height: 64px;
62 max-width: 64px;
63 width: auto;
64 border-radius: 32px;
65
66 border-radius: 32px;
67 transition: 0.5s ease-in-out;
68 }
69 .group {
70 flex-direction: row;
71 justify-content: left;
72
73 height: 64px;
74 width: auto;
75 padding-right: 7px;
76 margin-bottom: 0;
77 padding-top: 7px;
78 margin-right: 20px;
Samuel Shuert52f37772021-09-02 12:29:40 -050079 padding-left: 3px;
pineafana5ce9102021-09-02 17:21:31 +010080 }
81 .headerIcon {
82 height: 64px;
83 width: 64px;
84 margin-top: 12px;
Samuel Shuert52f37772021-09-02 12:29:40 -050085 margin-left: -3px;
pineafana5ce9102021-09-02 17:21:31 +010086 }
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}