New backup 2025-10-09 17:30:02
This commit is contained in:
parent
7552a772bf
commit
b8d135a930
2 changed files with 10 additions and 6 deletions
|
@ -147,11 +147,13 @@ revealer.home {
|
||||||
border-radius: $home-widget-border-radius;
|
border-radius: $home-widget-border-radius;
|
||||||
box-shadow: inset 0 0 0px 2px $home-widget-border-color, 0px 0px 9px 0px $home-widget-bg-color;
|
box-shadow: inset 0 0 0px 2px $home-widget-border-color, 0px 0px 9px 0px $home-widget-bg-color;
|
||||||
}
|
}
|
||||||
.mc_server {
|
.minecraft {
|
||||||
background-repeat: no-repeat;
|
.server_image {
|
||||||
background-position: center;
|
background-repeat: no-repeat;
|
||||||
background-size: cover;
|
background-position: center;
|
||||||
margin: 10px;
|
background-size: cover;
|
||||||
|
margin: 10px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.weather {
|
.weather {
|
||||||
color: $home-button-fg-color;
|
color: $home-button-fg-color;
|
||||||
|
|
|
@ -15,6 +15,7 @@
|
||||||
|
|
||||||
(defwidget mcstatus [json]
|
(defwidget mcstatus [json]
|
||||||
(box
|
(box
|
||||||
|
:class 'minecraft'
|
||||||
:orientation 'v'
|
:orientation 'v'
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
(box
|
(box
|
||||||
|
@ -25,7 +26,7 @@
|
||||||
:orientation 'h'
|
:orientation 'h'
|
||||||
:space-evenly false
|
:space-evenly false
|
||||||
(box
|
(box
|
||||||
:class 'mc_server'
|
:class 'server_image'
|
||||||
:width 75
|
:width 75
|
||||||
:height 75
|
:height 75
|
||||||
:style 'background-image: url("${server.icon_path}");'
|
:style 'background-image: url("${server.icon_path}");'
|
||||||
|
@ -45,6 +46,7 @@
|
||||||
)
|
)
|
||||||
(button
|
(button
|
||||||
(label
|
(label
|
||||||
|
:class 'reload_button'
|
||||||
:text "reload now"
|
:text "reload now"
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Reference in a new issue