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
|
window {
font-family: monospace;
font-size: 14pt;
color: #cdd6f4; /* text */
background-color: rgba(30, 30, 46, 0.5);
}
button {
background-repeat: no-repeat;
background-position: center;
background-size: 25%;
border: none;
background-color: rgba(30, 30, 46, 0);
margin: 5px;
animation: gradient_f 20s ease-in infinite;
transition: box-shadow 0.2s ease-in-out, background-color 0.2s ease-in-out;
}
button:hover#lock {
/*background-color: rgba(49, 50, 68, 0.2);*/
background-size: 25%;
margin-right : 30px;
margin-bottom : 30px;
border-radius: 20px;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
}
button:hover#logout {
/*background-color: rgba(49, 50, 68, 0.2);*/
background-size: 25%;
margin-right : 30px;
margin-top : 30px;
border-radius: 20px;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
}
button:hover#shutdown {
/*background-color: rgba(49, 50, 68, 0.2);*/
background-size: 25%;
margin-left : 20px;
margin-bottom : 30px;
border-radius: 20px;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
}
button:hover#reboot {
/*background-color: rgba(49, 50, 68, 0.2);*/
background-size: 25%;
margin-left : 30px;
margin-top : 30px;
border-radius: 20px;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
}
button:hover#suspend {
/*background-color: rgba(49, 50, 68, 0.2);*/
background-size: 25%;
margin-left : 30px;
margin-top : 30px;
border-radius: 20px;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
}
button:focus {
background-color: rgba(180, 190, 254, 0.3);
color: #1e1e2e;
background-size: 25%;
margin-left : 30px;
margin-top : 30px;
border-radius: 20px;
animation: gradient_f 20s ease-in infinite;
transition: all 0.3s cubic-bezier(.55,0.0,.28,1.682);
}
#lock {
background-image: image(url("./lock.png"));
}
#lock:focus {
background-image: image(url("./lock-hover.png"));
}
#logout {
background-image: image(url("./logout.png"));
}
#logout:focus {
background-image: image(url("./logout-hover.png"));
}
#suspend {
background-image: image(url("./sleep.png"));
}
#suspend:focus {
background-image: image(url("./sleep-hover.png"));
}
#shutdown {
background-image: image(url("./power.png"));
}
#shutdown:focus {
background-image: image(url("./power-hover.png"));
}
#reboot {
background-image: image(url("./restart.png"));
}
#reboot:focus {
background-image: image(url("./restart-hover.png"));
}
|