blob: a961a85715a54dacc632280e3faee1544ad8e6cd [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;
pineafana841c762021-11-14 21:21:04 +000015 padding-bottom: -1px;
pineafana5ce9102021-09-02 17:21:31 +010016 height: auto;
pineafana5ce9102021-09-02 17:21:31 +010017
18 border-radius: 32px;
19 transition: 0.5s ease-in-out;
20}
pineafana5ce9102021-09-02 17:21:31 +010021.group {
22 display: flex;
23 flex-direction: column;
24 justify-content: top;
25 align-items: center;
26
pineafan69adcb82021-11-03 21:29:03 +000027 background-color: var(--theme-ui-colors-cardBackground);
pineafan78727452021-11-04 21:25:07 +000028 transition: background-color 0.3s ease-in-out;
Samuel Shuert52f37772021-09-02 12:29:40 -050029 backdrop-filter: blur(7px), brightness(0.1);
pineafana5ce9102021-09-02 17:21:31 +010030 border-radius: 32px;
31
32 width: 64px;
33 margin-bottom: 20px;
34 padding-top: 7px;
35}
36
37.headerIcon {
38 height: 64px;
39 width: 64px;
40 margin-bottom: 20px;
41 margin-right: 0;
42 margin-top: -7px;
pineafand57ffa72021-11-15 21:29:26 +000043 border-radius: 50vw;
Samuel Shuert604e31d2021-09-02 16:06:20 -050044
45 cursor: pointer;
pineafana5ce9102021-09-02 17:21:31 +010046}
47
48.icon {
49 height: 50px;
50 width: 50px;
pineafanec688e12021-11-15 21:00:55 +000051 border-radius: 50vw;
pineafana5ce9102021-09-02 17:21:31 +010052 margin-bottom: 5px;
pineafandf39fd42021-09-04 16:05:27 +010053 cursor: pointer;
pineafan78727452021-11-04 21:25:07 +000054 display: block;
55}
56
57.ThemeChangeButton {
58 display: flex;
59 justify-content: center;
60 align-items: center;
pineafana5ce9102021-09-02 17:21:31 +010061}
62
63.containerOpen {
pineafand494b852021-09-03 19:49:49 +010064 max-height: 460px;
pineafana5ce9102021-09-02 17:21:31 +010065}
66
pineafand494b852021-09-03 19:49:49 +010067.containerDesktop {
68 animation-name: containerCloseOnStart;
69 animation-duration: 0.5s;
70 animation-direction: forwards;
71 animation-timing-function: ease-in-out;
72}
73
74@keyframes containerCloseOnStart {
75 from { max-height: 460px; }
76 to { max-height: 64px ; }
77}
78
79.containerDesktop:hover {
80 max-height: 460px;
81 animation-name: none;
82}
83
84@media screen and (min-width: 450px) {
pineafana5ce9102021-09-02 17:21:31 +010085 .container {
86 flex-direction: row;
87 justify-content: left;
88
89 margin: 20px;
90
91 height: 64px;
92 max-width: 64px;
93 width: auto;
94 border-radius: 32px;
95
96 border-radius: 32px;
97 transition: 0.5s ease-in-out;
98 }
99 .group {
100 flex-direction: row;
101 justify-content: left;
102
103 height: 64px;
104 width: auto;
105 padding-right: 7px;
106 margin-bottom: 0;
107 padding-top: 7px;
108 margin-right: 20px;
Samuel Shuert52f37772021-09-02 12:29:40 -0500109 padding-left: 3px;
pineafana5ce9102021-09-02 17:21:31 +0100110 }
111 .headerIcon {
112 height: 64px;
113 width: 64px;
114 margin-top: 12px;
Samuel Shuert52f37772021-09-02 12:29:40 -0500115 margin-left: -3px;
pineafana5ce9102021-09-02 17:21:31 +0100116 }
117 .containerOpen {
pineafand494b852021-09-03 19:49:49 +0100118 max-width: 460px;
119 max-height: 64px;
120 }
121 .containerDesktop:hover {
122 max-width: 460px;
pineafana5ce9102021-09-02 17:21:31 +0100123 max-height: 64px;
124 }
125 .icon {
126 height: 50px;
127 width: 50px;
128 margin-left: 5px;
129 }
pineafand494b852021-09-03 19:49:49 +0100130 @keyframes containerCloseOnStart {
131 from { max-width: 460px; }
132 to { max-width: 64px ; }
133 }
pineafandf39fd42021-09-04 16:05:27 +0100134}