blob: c6f231f06c7df864bfb0a42aa0cdc2f441338a6a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/* ----------- 💫 https://github.com/LinuxBeginnings 💫 -------- */
/* wallust-wlogout */
/* Importing wallust colors */
@import '../../.config/waybar/wallust/colors-waybar.css';
window {
font-size: 24pt;
color: @foreground; /* text */
background-color: rgba(30, 30, 46, 0.8);
}
button {
background-repeat: no-repeat;
background-position: center;
background-size: 20%;
background-color: rgba(200, 220, 255, 0);
animation: gradient_f 10s ease-in infinite;
transition: all 0.3s cubic-bezier(.55, 0.0, .28, 1.682), box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
border-radius: 80px;
border:0px;
outline-style: none;
}
button:focus {
background-size: 50%;
border: 0px;
outline-style: none;
}
button:hover {
background-color: transparent;
color: @color13;
background-size: 50%;
margin: 30px;
border-radius: 80px;
outline-style: none;
}
/* Adjust the size of the icon or content inside the button */
button span {
font-size: 1.2em; /* Increase the font size */
}
#lock {
background-image: image(url("./icons/lock.png"));
}
#lock:hover {
background-image: image(url("./icons/lock-hover.png"));
}
#logout {
background-image: image(url("./icons/logout.png"));
}
#logout:hover {
background-image: image(url("./icons/logout-hover.png"));
}
#suspend {
background-image: image(url("./icons/sleep.png"));
}
#suspend:hover {
background-image: image(url("./icons/sleep-hover.png"));
}
#shutdown {
background-image: image(url("./icons/power.png"));
}
#shutdown:hover {
background-image: image(url("./icons/power-hover.png"));
}
#reboot {
background-image: image(url("./icons/restart.png"));
}
#reboot:hover {
background-image: image(url("./icons/restart-hover.png"));
}
#hibernate {
background-image: image(url("./icons/hibernate.png"));
}
#hibernate:hover {
background-image: image(url("./icons/hibernate-hover.png"));
}
|