-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
116 lines (102 loc) · 2.11 KB
/
style.css
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
* {
background-image: none;
}
window {
background-color: rgba(0, 0, 0, 0.4);
}
button {
color: #b2b2b2;
background-color: #222326;
border-style: solid;
border-color: #6abcfa;
background-repeat: no-repeat;
background-position: center;
background-size: 30%;
border-width: 5px;
margin: 20px;
border-radius: 30%;
}
button:focus,
button:active {
background-color: #444a02;
border-color: #eefa6a;
outline-style: none;
}
button:hover {
background-color: #444a02;
}
#lock {
background-image: image(
url("./icons/lock.png"),
url("/usr/share/wlogout/icons/lock.png"),
url("/usr/local/share/wlogout/icons/lock.png")
);
}
#logout {
background-image: image(
url("./icons/logout.png"),
url("/usr/share/wlogout/icons/logout.png"),
url("/usr/local/share/wlogout/icons/logout.png")
);
}
#logout:focus {
background-image: image(
url("./icons/hi_logout.png")
);
}
#suspend {
background-image: image(
url("./icons/suspend.png"),
url("/usr/share/wlogout/icons/suspend.png"),
url("/usr/local/share/wlogout/icons/suspend.png")
);
}
#suspend:focus {
background-image: image(
url("./icons/hi_suspend.png")
);
}
#hibernate {
background-image: image(
url("./icons/hibernate.png"),
url("/usr/share/wlogout/icons/hibernate.png"),
url("/usr/local/share/wlogout/icons/hibernate.png")
);
}
#hibernate:focus {
background-image: image(
url("./icons/hi_hibernate.png")
);
}
#shutdown {
background-image: image(
url("./icons/shutdown.png"),
url("/usr/share/wlogout/icons/shutdown.png"),
url("/usr/local/share/wlogout/icons/shutdown.png")
);
}
#shutdown:focus {
background-image: image(
url("./icons/hi_shutdown.png")
);
}
#reboot {
background-image: image(
url("./icons/reboot.png"),
url("/usr/share/wlogout/icons/reboot.png"),
url("/usr/local/share/wlogout/icons/reboot.png")
);
}
#reboot:focus {
background-image: image(
url("./icons/hi_reboot.png")
);
}
#windows {
background-image: image(
url("./icons/windows.png")
);
}
#windows:focus {
background-image: image(url("./icons/hi_windows.png"));
}