This commit is contained in:
2026-06-03 21:32:45 +02:00
parent f2328ff319
commit 1e869b49c7
126 changed files with 41986 additions and 1 deletions
+31
View File
@@ -0,0 +1,31 @@
#power-menu-button {
border-radius: 40px;
min-width: 52px;
min-height: 52px;
transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#power-menu-button label {
font-size: 24px;
color: var(--foreground);
}
#power-menu-button:hover,
#power-menu-button:focus {
border-radius: 20px;
background-color: var(--surface-bright);
}
#power-menu-button:hover label,
#power-menu-button:focus label {
color: var(--primary);
}
#power-menu-button:active {
border-radius: 40px;
background-color: var(--primary);
}
#power-menu-button:active label {
color: var(--shadow);
}