New backup 2025-10-09 20:45:01
This commit is contained in:
parent
c5896dfc8c
commit
b4a96ab374
2 changed files with 10 additions and 3 deletions
|
@ -148,12 +148,15 @@ revealer.home {
|
|||
box-shadow: inset 0 0 0px 2px $home-widget-border-color, 0px 0px 9px 0px $home-widget-bg-color;
|
||||
}
|
||||
.minecraft {
|
||||
.server_image {
|
||||
.icon {
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
background-size: cover;
|
||||
margin: 10px;
|
||||
}
|
||||
.details {
|
||||
margin: 10px;
|
||||
}
|
||||
}
|
||||
.weather {
|
||||
color: $home-button-fg-color;
|
||||
|
|
|
@ -23,22 +23,26 @@
|
|||
:space-evenly true
|
||||
(for server in json
|
||||
(box
|
||||
:class 'server'
|
||||
:orientation 'h'
|
||||
:space-evenly false
|
||||
(box
|
||||
:class 'server_image'
|
||||
:class 'icon'
|
||||
:width 75
|
||||
:height 75
|
||||
:style 'background-image: url("${server.icon_path}");'
|
||||
)
|
||||
(box
|
||||
:class 'details'
|
||||
:orientation 'v'
|
||||
(label
|
||||
:text "${server.address}"
|
||||
)
|
||||
(label
|
||||
:text "${replace(server.status.motd,'§.','')}"
|
||||
:truncate true
|
||||
:wrap true
|
||||
:wrap-mode 'word'
|
||||
; :truncate true
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue