forked from Shinonome/dots-hyprland
111 lines
2.0 KiB
CSS
Executable File
111 lines
2.0 KiB
CSS
Executable File
/* This is GTK CSS, not normal CSS */
|
|
|
|
* {
|
|
all: unset;
|
|
border: 0px;
|
|
}
|
|
|
|
window {
|
|
background: rgba(0, 0, 0, 0.5);
|
|
/* background-image: url("background"); */
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
|
|
#window-box {
|
|
/* background-color: #1A1B26; */
|
|
border-radius: 1.5rem;
|
|
padding: 1.5rem;
|
|
/* border: 4px solid #7E64C5; */
|
|
border: 0px solid black;
|
|
}
|
|
|
|
#input-label {
|
|
font-size: 1.5rem;
|
|
color: transparent;
|
|
background-color: transparent;
|
|
margin: -20rem;
|
|
}
|
|
|
|
#input-field {
|
|
background-color: #474459;
|
|
color: #E5DFF9;
|
|
border-radius: 999px;
|
|
font-size: 1.3rem;
|
|
padding: 0.341rem 1.364rem;
|
|
margin: 0.477rem;
|
|
box-shadow: 2px 2px 4px rgba(22, 22, 30, 0.5);
|
|
min-height: 2.727rem;
|
|
}
|
|
|
|
/* #input-field:focus {
|
|
background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 96%, #C8BFFF 96%);
|
|
} */
|
|
|
|
#unlock-button {
|
|
margin: -20rem;
|
|
color: transparent;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#error-label {
|
|
color: #F38BA8;
|
|
}
|
|
|
|
#clock-label {
|
|
font-family: 'Lexend';
|
|
font-size: 6rem;
|
|
border-radius: 1.2rem;
|
|
padding: 0.5rem;
|
|
margin: 0.6rem;
|
|
margin-top: -35rem;
|
|
color: #C8BFFF;
|
|
text-shadow: 1px 1px 2px rgba(22, 22, 30, 0.5);
|
|
}
|
|
|
|
#user-image {
|
|
/* min-width: 200px;
|
|
min-height: 200px; */
|
|
}
|
|
|
|
#powerbar-box {}
|
|
|
|
#poweroff-button {
|
|
background-color: #302F33;
|
|
color: #C9C5D0;
|
|
min-width: 3rem;
|
|
min-height: 3rem;
|
|
margin: 10px;
|
|
border-radius: 99px;
|
|
}
|
|
|
|
#suspend-button {
|
|
background-color: #302F33;
|
|
color: #C9C5D0;
|
|
min-width: 3rem;
|
|
min-height: 3rem;
|
|
margin: 10px;
|
|
border-radius: 99px;
|
|
}
|
|
|
|
#reboot-button {
|
|
background-color: #302F33;
|
|
color: #C9C5D0;
|
|
min-width: 3rem;
|
|
min-height: 3rem;
|
|
margin: 10px;
|
|
border-radius: 99px;
|
|
}
|
|
|
|
#poweroff-button:hover,
|
|
#reboot-button:hover,
|
|
#suspend-button:hover {
|
|
background: rgba(200, 200, 200, 0.3);
|
|
}
|
|
|
|
#poweroff-button:active,
|
|
#reboot-button:active,
|
|
#suspend-button:active {
|
|
background: rgba(200, 200, 200, 0.5);
|
|
} |