move to snowfall

This commit is contained in:
zackartz 2024-05-23 20:26:30 +00:00
parent 9d7ad7c973
commit 769d4b0df5
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
188 changed files with 2203 additions and 3041 deletions

View file

@ -0,0 +1,31 @@
.Slider {
background: #1e1e2e;
border-radius: 15px;
border: 3px solid #11111b;
margin-bottom: 15px;
padding: 12px;
}
.sld {
&Label {
margin-bottom: 6px;
}
&Icon {
margin-right: 6px;
}
&Slider {
min-width: 300px;
& slider {
background: none;
}
& trough {
background: #313244;
border-radius: 24px;
min-height: 16px;
}
& highlight {
background: $accent;
border-radius: 24px;
min-width: 16px;
}
}
}

View file

@ -0,0 +1,13 @@
.calendar {
background-color: #1e1e2e;
border-radius: 16px;
border: 3px solid #11111b;
color: #cdd6f4;
padding: 10px;
}
.calendarWidget {
padding: 3px;
&:selected {
color: $accent;
}
}

View file

@ -0,0 +1,9 @@
@import "Slider";
@import "calendar";
@import "notifications";
@import "quicktoggles";
.dashboard {
font-weight: bold;
}

View file

@ -0,0 +1,26 @@
.notificationList {
background-color: #1e1e2e;
border-radius: 15px;
border: 3px solid #11111b;
margin-bottom: 15px;
padding: 10px;
}
.notificationEmpty {
color: #313244;
font-size: 80px;
}
.notificationImage {
color: #cdd6f4;
font-size: 40px;
}
.notification {
background-color: #313244;
border-radius: 15px;
padding:10px;
}
.notificationTitle {
color: #cdd6f4;
}
.notificationDescription {
color: #bac2de;
}

View file

@ -0,0 +1,37 @@
.quicktoggles {
background: #1e1e2e;
border-radius: 15px;
border: 3px solid #11111b;
margin-bottom: 15px;
min-width: 300px;
padding: 20px 20px;
}
.buttons {
margin-top: 10px;
}
.bluetooth, .wifi {
background: $accent;
border-radius: 24px;
min-width: 125px;
padding: 9px;
&.off {
background: #313244;
}
}
.wifi {
margin-right: 10px;
}
.wifi, .bluetooth, {
&Icon {
margin-right: 6px;
}
}
.Icon {
background: #313244;
border-radius: 50%;
margin-left: 5px;
min-height: 32px;
min-width: 32px;
}