-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2015-08-27.html
105 lines (92 loc) · 2.24 KB
/
2015-08-27.html
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
<!doctype html>
<html>
<head>
<title>2015/08/27</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1">
<style>
html {
width: 100%;
height: 100%;
border: none;
font-size: 10vw;
}
html, div {
margin: 0;
padding: 0;
}
body {
background: royalblue;
-webkit-user-select: none;
overflow: hidden;
height: 100%;
font-size: 1rem;
}
.page {
width: 100%;
height: 100%;
position: relative;
}
@-webkit-keyframes circle {
from {
width: 0;
height: 0;
}
to {
width: 12rem;
height: 12rem;
}
}
@keyframes circle {
from {
width: 0;
height: 0;
}
to {
width: 12rem;
height: 12rem;
}
}
.text {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
-webkit-border-radius: 50%;
border-radius: 50%;
overflow: hidden;
-webkit-animation: circle 1s ease infinite alternate;
animation: circle 1s ease infinite alternate;
}
.inner {
width: 10rem;
height: 10rem;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate3d(-50%, -50%, 0);
transform: translate3d(-50%, -50%, 0);
font-size: 5rem;
/*line-height: 10rem;*/
color: yellow;
text-transform: uppercase;
text-align: center;
}
.small {
font-size: 1rem;
}
</style>
</head>
<body>
<div class="page">
<div class="text">
<div class="inner">
dj
<div class="small">
i love you
</div>
</div>
</div>
</div>
</body>
</html>