-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (75 loc) · 1.39 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
* .container{
position: fixed;
width: 100%;
height: 100%;
top: 0px;
left: 0px;
z-index:100;
background-color: rgb(0, 238, 255);
animation-name: light;
animation-duration: 1.3s;
}
.header {
animation: moveLL 3s;
font-family: "League";
text-shadow: -3px 0 white, 0 3px white, 3px 0 white, 0 -3px white;
text-align: center;
font-size: 140px;
color: black;
margin-top: 15%;
}
@font-face {
font-family: "League";
src: url(LeagueGothic-Regular.otf);
font-weight: normal;
font-style: normal;
}
.content {
font-family: Arial, Helvetica, sans-serif;
text-align: center;
font-size: 60px;
}
#time {
animation: moveR 4s;
font-family: "League";
font-size: 100px;
text-shadow: -2px 0 white, 0 2px white, 2px 0 white, 0 -2px white;
}
#date {
animation: moveL 4s;
font-family: "League";
font-size: 60px;
text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}
@keyframes light {
from {
filter: brightness(0%);
}
to {
filter: brightness(100%);
}
}
@keyframes moveL {
from {
margin-left: 30%;
}
to {
margin-left: 0%;
}
}
@keyframes moveR {
from {
margin-right: 30%;
}
to {
margin-right: 0%;
}
}
@keyframes moveLL {
from {
margin-left: 50%;
}
to {
margin-left: 0%;
}
}