mirror of
https://github.com/duma799/hyprduma-config.git
synced 2026-05-13 14:11:01 +00:00
86 lines
1.4 KiB
CSS
86 lines
1.4 KiB
CSS
* {
|
|
font-family: "CodeNewRoman Nerd Font Propo";
|
|
font-size: 14px;
|
|
background-image: none;
|
|
}
|
|
|
|
window {
|
|
margin: 0px;
|
|
border: 3px solid #887671;
|
|
background-color: #0B0B08;
|
|
background-image: none;
|
|
border-radius: 15px;
|
|
animation: slideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
|
|
opacity: 1.0;
|
|
}
|
|
|
|
@keyframes slideIn {
|
|
from {
|
|
opacity: 0;
|
|
transform: translateY(-30px) scale(0.96);
|
|
}
|
|
to {
|
|
opacity: 1.0;
|
|
transform: translateY(0) scale(1);
|
|
}
|
|
}
|
|
|
|
#input {
|
|
margin: 10px;
|
|
padding: 8px 15px;
|
|
border: none;
|
|
color: #dad4d1;
|
|
background-color: #555048;
|
|
border-radius: 10px;
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
#input:focus {
|
|
background-color: #645B52;
|
|
box-shadow: 0 0 10px #887671;
|
|
}
|
|
|
|
#inner-box {
|
|
margin: 5px;
|
|
padding: 10px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#outer-box {
|
|
margin: 5px;
|
|
padding: 5px;
|
|
background-color: transparent;
|
|
}
|
|
|
|
#scroll {
|
|
margin: 0px;
|
|
border: none;
|
|
}
|
|
|
|
#entry {
|
|
padding: 8px;
|
|
border-radius: 8px;
|
|
transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
|
|
margin: 2px 0;
|
|
}
|
|
|
|
#entry:hover {
|
|
background-color: #645B52;
|
|
transform: translateX(5px);
|
|
}
|
|
|
|
#entry:selected {
|
|
background-color: #887671;
|
|
transform: translateX(8px) scale(1.02);
|
|
box-shadow: 0 4px 12px #887671;
|
|
}
|
|
|
|
#text {
|
|
color: #dad4d1;
|
|
}
|
|
|
|
#text:selected {
|
|
color: #dad4d1;
|
|
font-weight: bold;
|
|
}
|