-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (71 loc) · 1.59 KB
/
style.css
File metadata and controls
82 lines (71 loc) · 1.59 KB
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
window {
font-size: 24pt;
color: @foreground;
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(0.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;
}
button span {
font-size: 1.2em;
}
#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"));
}