infrastructure/nixos/hosts/thalassa/null/home/eww/eww.scss

138 lines
1.9 KiB
SCSS
Raw Normal View History

2022-09-05 16:12:17 +02:00
$light-gray: #9699b7;
2022-08-28 23:47:34 +02:00
2022-08-24 18:17:29 +02:00
* {
all: unset; //Unsets everything so you can style everything from scratch
font-family: "JetBrainsMono"
}
2022-08-28 23:47:34 +02:00
tooltip {
background-color: $base;
border-radius: 5px
}
2022-08-24 18:17:29 +02:00
button {
transition: background-color 200ms, color 200ms;
}
.active {
2022-08-28 23:47:34 +02:00
color: $pink;
2022-08-24 18:17:29 +02:00
font-size: 1.4rem;
}
.inactive {
color: $base;
font-size: 1.4rem;
}
.inactive:hover {
color: $light-gray;
}
.bar {
background-color: $mantle;
}
.clock {
font-weight: bold;
background-color: $base;
color: $text;
border-radius: 10px;
padding: 0.2rem;
margin: 0.5rem;
}
.date {
font-size: 1.5rem;
2022-08-28 23:47:34 +02:00
color: $text;
2022-08-24 18:17:29 +02:00
}
.battery {
2022-09-24 13:57:01 +02:00
font-family: monospace;
2022-08-24 18:17:29 +02:00
font-size: 1.5rem;
2022-08-28 23:47:34 +02:00
color: $teal;
2022-08-24 18:17:29 +02:00
}
2022-09-24 13:57:01 +02:00
.volume,
.dnd,
.wifi {
font-family: monospace;
2022-08-24 18:17:29 +02:00
font-size: 1.5rem;
2022-08-28 23:47:34 +02:00
color: $mauve;
2022-09-24 13:57:01 +02:00
padding: 0 5px;
}
2022-09-24 13:57:01 +02:00
// battery menu
.batterywindow {
background-color: $mantle;
border-radius: 5px;
font-size: 18px;
font-weight: normal;
color: $text;
progressbar {
border-radius: 5px;
}
progressbar progress {
background-color: $green;
}
progressbar trough {
background-color: $base;
}
.batterymenu {
padding: 10px;
}
}
// Calendar
.cal {
background-color: $mantle;
border-radius: 5px;
font-size: 18px;
font-weight: normal;
.cal-in {
padding: 0px 10px 0px 10px;
color: $text;
.cal {
&.highlight {
padding: 20px;
}
padding: 5px 5px 5px 5px;
margin-left: 10px;
}
}
}
calender {
color: $text;
}
calendar:selected {
color: $mauve;
}
calendar.header {
color: $overlay0;
font-weight: bold;
}
calendar.button {
color: $base;
}
calendar.highlight {
color: $overlay0;
font-weight: bold;
}
calendar:indeterminate {
color: $text;
2022-08-28 23:47:34 +02:00
}