-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy paths13108.html
More file actions
96 lines (92 loc) · 2.05 KB
/
s13108.html
File metadata and controls
96 lines (92 loc) · 2.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>s13108 Mehmet KONUK</title>
<style>
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,700|Dosis:200,400,600);
body {
background-color: #252527;
}
h1 {
font-family: Dosis;
font-weight: 200;
position: absolute;
text-align: center;
display: block;
color: #fff;
top: 50%;
width: 100%;
margin-top: -55px;
text-transform: uppercase;
letter-spacing: 1px;
-webkit-transform-style: preserve-3d;
-moz-transform-style: preserve-3d;
transform-style: preserve-3d;
-webkit-transform: translate3d(0, 0, 0);
-moz-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
opacity: 0;
-webkit-animation: anim 3.2s ease-out forwards 1s;
animation: anim 3.2s ease-out forwards 1s;
}
strong {
display: block;
font-weight: 400;
}
@-webkit-keyframes anim {
0% {
text-shadow: 0 0 50px #fff;
letter-spacing: 80px;
opacity: 0;
-webkit-transform: rotateY(-90deg);
}
50% {
text-shadow: 0 0 1px #fff;
opacity: 0.8;
-webkit-transform: rotateY(0deg);
}
75% {
text-shadow: 0 0 1px #fff;
opacity: 0.8;
-webkit-transform: rotateY(0deg) translateZ(60px);
}
100% {
text-shadow: 0 0 1px #fff;
opacity: 0.8;
letter-spacing: 8px;
-webkit-transform: rotateY(0deg) translateZ(100px);
}
}
@keyframes anim {
0% {
text-shadow: 0 0 50px #fff;
letter-spacing: 80px;
opacity: 0;
-moz-transform: rotateY(-90deg);
}
50% {
text-shadow: 0 0 1px #fff;
opacity: 0.8;
-moz-transform: rotateY(0deg);
}
75% {
text-shadow: 0 0 1px #fff;
opacity: 0.8;
-moz-transform: rotateY(0deg) translateZ(60px);
}
100% {
text-shadow: 0 0 1px #fff;
opacity: 0.8;
letter-spacing: 8px;
-moz-transform: rotateY(0deg) translateZ(100px);
}
}
</style>
</head>
<body>
<h1>Mehmet KONUK <strong>s13108</strong></h1>
</body>
</html>