dots-of-war/files/.config/eww/eww.scss

130 lines
1.8 KiB
SCSS
Raw Normal View History

2020-10-21 20:01:39 +00:00
entry {
padding: 10px;
background: red;
}
.main_window {
all: unset;
background: #1d2021;
}
.volume_popup {
&,
& * {
all: unset;
}
background: #1d2021;
border-radius: 50px;
scale trough {
2020-11-01 12:51:00 +00:00
padding: 10px;
2020-10-21 20:01:39 +00:00
border-radius: 50px;
background-color: #ebdbb2;
2020-11-01 12:51:00 +00:00
slider {
background: red;
}
2020-10-21 20:01:39 +00:00
highlight {
2020-11-01 12:51:00 +00:00
padding: 10px;
min-height: 30px;
2020-10-21 20:01:39 +00:00
border-bottom-left-radius: 50px;
border-bottom-right-radius: 50px;
background-color: #8ec07c;
}
}
}
.music {
&,
& * {
all: unset;
}
.data {
margin: 15px;
margin-left: 45px;
.songname {
color: #8ec07c;
}
.key {
color: #928374;
}
}
.buttons {
min-height: 50px;
2020-11-01 12:51:00 +00:00
background: #1d2021;
box-shadow: 0 0 10px -5px rgba(0, 0, 0, 0.5);
2020-10-21 20:01:39 +00:00
}
2020-11-01 12:51:00 +00:00
}
2020-10-21 20:01:39 +00:00
2020-11-18 16:46:53 +00:00
scale trough {
padding: 10px;
border-radius: 50px;
background-color: #ebdbb2;
2020-10-21 20:01:39 +00:00
2020-11-18 16:46:53 +00:00
highlight {
2020-11-01 12:51:00 +00:00
padding: 10px;
2020-11-18 16:46:53 +00:00
min-width: 30px;
border-bottom-left-radius: 50px;
border-bottom-right-radius: 50px;
background-color: #8ec07c;
2020-10-21 20:01:39 +00:00
}
2020-11-18 16:46:53 +00:00
}
2020-12-25 10:53:37 +00:00
.this {
border: 10px solid blue;
}
.shit {
border: 10px solid green;
}
.fuck {
border-radius: 100px;
}
2021-01-31 10:55:50 +00:00
.whatever {
border: 2px solid green;
}
.lol {
color: red;
}
2021-03-16 15:14:21 +00:00
window {
2021-04-22 07:24:56 +00:00
//background: none;
2021-03-16 15:14:21 +00:00
}
progressbar {
min-width: 1px;
trough {
min-width: 1px;
//background-color: #ebdbb255;
}
&, & * {
all: unset;
}
progress {
min-width: 1px;
//background-color: #8CD68F;
//box-shadow: 0 0 10px 3px #8CD68F22;
}
}
progressbar progress {
background: repeating-linear-gradient(0deg, #458588, #8ec07c); /*, #b8bb26, #fabd2f);*/
background-size: 100% 200%;
animation: AnimationName 1s linear infinite;
}
@keyframes AnimationName {
0%{background-position:0% 0%}
100%{background-position:0% 200%}
}