-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclock.css
More file actions
130 lines (121 loc) · 3.8 KB
/
clock.css
File metadata and controls
130 lines (121 loc) · 3.8 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
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
@font-face {
font-family: "DEG";
src: url("DSEG7Modern-Bold.ttf");
-webkit-appearance: none;
}
@keyframes shadow-color {
0% {
text-shadow: 0px 0px 50px rgb(85, 255, 85), 0px 0px 50px rgb(85, 255, 85), 0px 0px 50px rgb(85, 255, 85), 0px 0px 50px rgb(85, 255, 85);
}
20% {
text-shadow: 0px 0px 50px rgb(229, 255, 0), 0px 0px 50px rgb(229, 255, 0), 0px 0px 50px rgb(229, 255, 0), 0px 0px 50px rgb(229, 255, 0);
}
40% {
text-shadow: 0px 0px 50px #0989FC, 0px 0px 50px #0989FC, 0px 0px 50px #0989FC, 0px 0px 50px #0989FC, 0px 0px 50px #0989FC, 0px 0px 50px #0989FC;
}
60% {
text-shadow: 0px 0px 50px rgb(166, 0, 207), 0px 0px 50px rgb(166, 0, 207), 0px 0px 50px rgb(166, 0, 207), 0px 0px 50px rgb(166, 0, 207);
}
80% {
text-shadow: 0px 0px 50px rgb(255, 80, 27), 0px 0px 50px rgb(255, 80, 27), 0px 0px 50px rgb(255, 80, 27), 0px 0px 50px rgb(255, 80, 27);
}
100% {
text-shadow: 0px 0px 50px rgb(85, 255, 85), 0px 0px 50px rgb(85, 255, 85), 0px 0px 50px rgb(85, 255, 85), 0px 0px 50px rgb(85, 255, 85);
}
}
@keyframes button_shadow-color {
0% {
box-shadow: 0px 0px 50px rgb(85, 255, 85), 0px 0px 50px rgb(85, 255, 85), 0px 0px 50px rgb(85, 255, 85), 0px 0px 50px rgb(85, 255, 85);
}
20% {
box-shadow: 0px 0px 50px rgb(229, 255, 0), 0px 0px 50px rgb(229, 255, 0), 0px 0px 50px rgb(229, 255, 0), 0px 0px 50px rgb(229, 255, 0);
}
40% {
box-shadow: 0px 0px 50px #0989FC, 0px 0px 50px #0989FC, 0px 0px 50px #0989FC, 0px 0px 50px #0989FC, 0px 0px 50px #0989FC, 0px 0px 50px #0989FC;
}
60% {
box-shadow: 0px 0px 50px rgb(166, 0, 207), 0px 0px 50px rgb(166, 0, 207), 0px 0px 50px rgb(166, 0, 207), 0px 0px 50px rgb(166, 0, 207);
}
80% {
box-shadow: 0px 0px 50px rgb(255, 80, 27), 0px 0px 50px rgb(255, 80, 27), 0px 0px 50px rgb(255, 80, 27), 0px 0px 50px rgb(255, 80, 27);
}
100% {
box-shadow: 0px 0px 50px rgb(85, 255, 85), 0px 0px 50px rgb(85, 255, 85), 0px 0px 50px rgb(85, 255, 85), 0px 0px 50px rgb(85, 255, 85);
}
}
body {
background-color: #000000;
-webkit-appearance: none;
}
.clock {
position: relative;
text-align: center;
top: 40%;
font-family: "DEG";
color: #FFFFFF;
animation: shadow-color 10s infinite;
user-select: none;
-webkit-appearance: none;
}
.copy_clock_data {
position: relative;
text-align: center;
top: 40%;
font-family: "DEG";
color: #FFFFFF;
animation: shadow-color 10s infinite;
-webkit-appearance: none;
}
#day {
position: relative;
width: 100px;
left: 100px;
bottom: 10px;
font-family: "DEG";
color: #FFFFFF;
animation: shadow-color 10s infinite;
user-select: none;
font-size: 40px;
-webkit-appearance: none;
}
#copybutton {
font-family: "DEG";
position: relative;
top: 40%;
left: 44.2%;
text-decoration: none;
color: white;
font-size: 40px;
width: 0.5em;
border: 7px solid black;
border-radius: 50px;
animation: button_shadow-color 10s infinite;
user-select: none;
-webkit-appearance: none;
}
#align_center_button {
font-family: "DEG";
position: relative;
top: 40%;
left: 42.35%;
text-decoration: none;
color: white;
font-size: 40px;
width: 0.5em;
border: 7px solid black;
border-radius: 50px;
animation: button_shadow-color 10s infinite;
user-select: none;
-webkit-appearance: none;
}
#border {
position: fixed;
width: 200px;
height: 100px;
border: 2px solid white;
border-radius: 50px;
animation: button_shadow-color 10s infinite;
top: 75.5%;
left: 42%;
-webkit-appearance: none;
}