-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp-style.css
104 lines (93 loc) · 1.83 KB
/
p-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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
html,
body {
-webkit-box-align: center;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
height: 100%;
-webkit-box-pack: center;
-webkit-justify-content: center;
-ms-flex-pack: center;
justify-content: center;
margin: 0;
}
.z {
-webkit-animation-duration: 3s;
animation-duration: 3s;
-webkit-animation-iteration-count: infinite;
animation-iteration-count: infinite;
-webkit-animation-play-state: paused;
animation-play-state: paused;
color: white;
font-family: monospace;
position: relative;
}
#z1 {
-webkit-animation-delay: 2s;
animation-delay: 2s;
-webkit-animation-name: z1-float;
animation-name: z1-float;
left: 10px;
top: -95px;
}
@-webkit-keyframes z1-float {
to {
color: black;
top: -115px;
}
}
@keyframes z1-float {
to {
color: black;
top: -115px;
}
}
#z2 {
-webkit-animation-delay: 1s;
animation-delay: 1s;
-webkit-animation-name: z2-float;
animation-name: z2-float;
font-size: 2em;
left: -10px;
top: -75px;
}
@-webkit-keyframes z2-float {
to {
color: black;
top: -95px;
}
}
@keyframes z2-float {
to {
color: black;
top: -95px;
}
}
#z3 {
-webkit-animation-name: z3-float;
animation-name: z3-float;
font-size: 3em;
left: -10px;
top: -50px;
}
@-webkit-keyframes z3-float {
to {
color: black;
top: -70px;
}
}
@keyframes z3-float {
to {
color: black;
top: -70px;
}
}
#go-to-sleep {
border-radius: 10%;
margin-right: 50px;
outline: none;
}