change wofi config
This commit is contained in:
parent
5f222a4c81
commit
dc4244d1e0
|
@ -1,4 +1,4 @@
|
||||||
width=600
|
width=300
|
||||||
height=400
|
height=400
|
||||||
location=center
|
location=center
|
||||||
show=drun
|
show=drun
|
||||||
|
|
|
@ -1,67 +1,94 @@
|
||||||
|
/* Mocha Mauve */
|
||||||
|
@define-color accent #cba6f7;
|
||||||
|
@define-color txt #cad3f5;
|
||||||
|
@define-color bg #24273a;
|
||||||
|
@define-color bg2 #494d64;
|
||||||
|
|
||||||
* {
|
* {
|
||||||
font-family: JetBrainsMono Nerd Font;
|
font-family: 'JetBrains Mono Nerd Font', monospace;
|
||||||
|
font-size: 14px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Window */
|
||||||
window {
|
window {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
border: 2px solid #595959;
|
|
||||||
background-color: rgba(31, 31, 31, 0.95);
|
|
||||||
border-radius: 0px;
|
|
||||||
}
|
|
||||||
#input {
|
|
||||||
all: unset;
|
|
||||||
min-height: 36px;
|
|
||||||
padding: 4px 10px;
|
|
||||||
margin: 4px;
|
|
||||||
border: none;
|
|
||||||
color: #e2e0ec;
|
|
||||||
font-weight: bold;
|
|
||||||
background-color: #595959;
|
|
||||||
outline: none;
|
|
||||||
border-radius: 0px;
|
|
||||||
margin: 10px;
|
|
||||||
margin-bottom: 2px;
|
|
||||||
}
|
|
||||||
|
|
||||||
#inner-box {
|
|
||||||
margin: 4px;
|
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
font-weight: bold;
|
border: 3px solid @accent;
|
||||||
border-radius: 0px;
|
border-radius: 7px;
|
||||||
|
background-color: @bg;
|
||||||
|
animation: slideIn 0.5s ease-in-out both;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Slide In */
|
||||||
|
@keyframes slideIn {
|
||||||
|
0% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Inner Box */
|
||||||
|
#inner-box {
|
||||||
|
margin: 5px;
|
||||||
|
padding: 10px;
|
||||||
|
border: none;
|
||||||
|
background-color: @bg;
|
||||||
|
animation: fadeIn 0.5s ease-in-out both;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Fade In */
|
||||||
|
@keyframes fadeIn {
|
||||||
|
0% {
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
100% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Outer Box */
|
||||||
#outer-box {
|
#outer-box {
|
||||||
margin: 0px;
|
margin: 5px;
|
||||||
padding: 3px;
|
padding: 10px;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0px;
|
background-color: @bg;
|
||||||
border: 2px solid #595959;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Scroll */
|
||||||
#scroll {
|
#scroll {
|
||||||
margin-top: 5px;
|
margin: 0px;
|
||||||
|
padding: 10px;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0px;
|
|
||||||
margin-bottom: 5px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#text:selected {
|
/* Input */
|
||||||
color: #f1f0f5;
|
#input {
|
||||||
margin: 0px 0px;
|
margin: 5px;
|
||||||
|
padding: 10px;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0px;
|
color: @accent;
|
||||||
|
background-color: @bg2;
|
||||||
|
animation: fadeIn 0.5s ease-in-out both;
|
||||||
}
|
}
|
||||||
|
|
||||||
#entry {
|
/* Text */
|
||||||
margin: 0px 0px;
|
#text {
|
||||||
|
margin: 5px;
|
||||||
|
padding: 10px;
|
||||||
border: none;
|
border: none;
|
||||||
border-radius: 0px;
|
color: @txt;
|
||||||
background-color: transparent;
|
animation: fadeIn 0.5s ease-in-out both;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Selected Entry */
|
||||||
#entry:selected {
|
#entry:selected {
|
||||||
margin: 0px 0px;
|
background-color: @accent;
|
||||||
border: none;
|
}
|
||||||
border-radius: 0px;
|
|
||||||
background: #595959;
|
#entry:selected #text {
|
||||||
/* background: linear-gradient(90deg, #E97193 0%, #82A497 100%); */
|
color: @bg2;
|
||||||
}
|
}
|
Loading…
Reference in a new issue