-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclock.css
104 lines (91 loc) · 1.74 KB
/
clock.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
html, body {
-webkit-user-select: none;
background-color: rgb(5, 11, 19);
background: -webkit-radial-gradient(center, ellipse cover, rgb(11, 36, 46) 0%,rgb(5, 11, 19) 100%); /* Chrome10-25,Safari5.1-6 */
font-family: belgrano;
height:100%;
margin:0;
max-height: 120px;
overflow:hidden;
}
.accent0 {
color: rgba(36, 238, 252, 1);
}
.accent1 {
color: rgba(36, 238, 252, 0);
}
.am {
color: #f5ff6c;
font-size: 40px;
}
.pm {
color: #4f80da;
font-size: 40px;
}
.modes {
color: yellow;
font-size: 40px;
}
.yellow {
color: yellow;
}
.gray {
color: rgb(131, 131, 131);
}
.dialog {
font-size: 17px;
text-align: center;
line-height: 20px;
padding: 15px;
text-shadow: 2px 2px black;
vertical-align: middle;
}
.prompt {
font-size: 30px;
margin-top:15px;
margin-right:20px;
margin-left:20px;
color: yellow;
padding-bottom: 1px;
}
.floating-box {
color: white;
cursor: pointer;
position: absolute;
text-align: center;
width: 100%;
font-size: 50px;
left: 0px;
line-height: 120px;
text-shadow: 2px 2px black;
top: 0px;
vertical-align: middle;
}
.floating-footer-box {
color: white;
cursor: pointer;
position: absolute;
text-align: center;
width: 100%;
font-size: 15px;
background-color: #242424;
left: 0px;
height: 30px;
top: 120px;
vertical-align: bottom;
}
.footer-content {
color: white;
cursor: pointer;
position: relative;
text-align: center;
width: 100%;
font-size: 15px;
background-color: #242424;
top:0px;
left: -340px;
height: 30px;
line-height: 30px;
vertical-align: bottom;
pointer-events: none;
}