blob: a80f54e7d6f06346791ea3556667a0f929b3743a [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;
Samuel Shuert604e31d2021-09-02 16:06:20 -050043
44 cursor: pointer;
pineafana5ce9102021-09-02 17:21:31 +010045}
46
47.icon {
48 height: 50px;
49 width: 50px;
50 margin-bottom: 5px;
pineafandf39fd42021-09-04 16:05:27 +010051 cursor: pointer;
pineafan78727452021-11-04 21:25:07 +000052 display: block;
53}
54
55.ThemeChangeButton {
56 display: flex;
57 justify-content: center;
58 align-items: center;
pineafana5ce9102021-09-02 17:21:31 +010059}
60
61.containerOpen {
pineafand494b852021-09-03 19:49:49 +010062 max-height: 460px;
pineafana5ce9102021-09-02 17:21:31 +010063}
64
pineafand494b852021-09-03 19:49:49 +010065.containerDesktop {
66 animation-name: containerCloseOnStart;
67 animation-duration: 0.5s;
68 animation-direction: forwards;
69 animation-timing-function: ease-in-out;
70}
71
72@keyframes containerCloseOnStart {
73 from { max-height: 460px; }
74 to { max-height: 64px ; }
75}
76
77.containerDesktop:hover {
78 max-height: 460px;
79 animation-name: none;
80}
81
82@media screen and (min-width: 450px) {
pineafana5ce9102021-09-02 17:21:31 +010083 .container {
84 flex-direction: row;
85 justify-content: left;
86
87 margin: 20px;
88
89 height: 64px;
90 max-width: 64px;
91 width: auto;
92 border-radius: 32px;
93
94 border-radius: 32px;
95 transition: 0.5s ease-in-out;
96 }
97 .group {
98 flex-direction: row;
99 justify-content: left;
100
101 height: 64px;
102 width: auto;
103 padding-right: 7px;
104 margin-bottom: 0;
105 padding-top: 7px;
106 margin-right: 20px;
Samuel Shuert52f37772021-09-02 12:29:40 -0500107 padding-left: 3px;
pineafana5ce9102021-09-02 17:21:31 +0100108 }
109 .headerIcon {
110 height: 64px;
111 width: 64px;
112 margin-top: 12px;
Samuel Shuert52f37772021-09-02 12:29:40 -0500113 margin-left: -3px;
pineafana5ce9102021-09-02 17:21:31 +0100114 }
115 .containerOpen {
pineafand494b852021-09-03 19:49:49 +0100116 max-width: 460px;
117 max-height: 64px;
118 }
119 .containerDesktop:hover {
120 max-width: 460px;
pineafana5ce9102021-09-02 17:21:31 +0100121 max-height: 64px;
122 }
123 .icon {
124 height: 50px;
125 width: 50px;
126 margin-left: 5px;
127 }
pineafand494b852021-09-03 19:49:49 +0100128 @keyframes containerCloseOnStart {
129 from { max-width: 460px; }
130 to { max-width: 64px ; }
131 }
pineafandf39fd42021-09-04 16:05:27 +0100132}