New backup 2025-04-22 12:45:02
This commit is contained in:
parent
d557ec02e8
commit
19541f3df2
2 changed files with 26 additions and 11 deletions
|
@ -171,16 +171,15 @@ tooltip{
|
||||||
}
|
}
|
||||||
.shortcuts {
|
.shortcuts {
|
||||||
background-color: rgba($color0,0.5);
|
background-color: rgba($color0,0.5);
|
||||||
padding: 10px 10px;
|
padding: 15px;
|
||||||
.vertical {
|
// .vertical {
|
||||||
margin: 0px 10px;
|
// margin: 0px 10px;
|
||||||
}
|
// }
|
||||||
button {
|
button {
|
||||||
background-color: rgba($color9,0.5);
|
background-color: rgba($color9,0.5);
|
||||||
border-radius: 30px;
|
border-radius: 40px;
|
||||||
padding: 10px;
|
margin: 5px;
|
||||||
// margin: 10px;
|
font-size: 1.2em;
|
||||||
// min-width: 60px;
|
|
||||||
}
|
}
|
||||||
button:hover {
|
button:hover {
|
||||||
background-color: rgba($color1,0.5)
|
background-color: rgba($color1,0.5)
|
||||||
|
|
|
@ -1,13 +1,29 @@
|
||||||
(defwidget shortcuts []
|
(defwidget shortcuts []
|
||||||
(box
|
(box
|
||||||
:class "shortcuts"
|
:class "shortcuts"
|
||||||
:orientation "h"
|
:orientation "v"
|
||||||
:space-evenly true
|
:space-evenly true
|
||||||
:halign "center"
|
:halign "center"
|
||||||
:width 300
|
:width 300
|
||||||
:height 200
|
:height 200
|
||||||
(box
|
(box
|
||||||
:orientation "v"
|
:orientation "h"
|
||||||
|
:space-evenly true
|
||||||
|
:halign "center"
|
||||||
|
(button
|
||||||
|
:width 80
|
||||||
|
:height 80
|
||||||
|
"")
|
||||||
|
(button
|
||||||
|
:width 80
|
||||||
|
:height 80
|
||||||
|
"test!2")
|
||||||
|
(button
|
||||||
|
:width 80
|
||||||
|
:height 80
|
||||||
|
""))
|
||||||
|
(box
|
||||||
|
:orientation "h"
|
||||||
:space-evenly true
|
:space-evenly true
|
||||||
:halign "center"
|
:halign "center"
|
||||||
(button
|
(button
|
||||||
|
@ -23,7 +39,7 @@
|
||||||
:height 80
|
:height 80
|
||||||
"test!"))
|
"test!"))
|
||||||
(box
|
(box
|
||||||
:orientation "v"
|
:orientation "h"
|
||||||
:space-evenly true
|
:space-evenly true
|
||||||
:halign "center"
|
:halign "center"
|
||||||
(button
|
(button
|
||||||
|
|
Loading…
Add table
Reference in a new issue