-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
91 lines (89 loc) · 2.74 KB
/
index.html
File metadata and controls
91 lines (89 loc) · 2.74 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>sakmt.net</title>
<link href='https://fonts.googleapis.com/css?family=Lato:100,300&display=swap' rel='stylesheet' type='text/css'>
<style>
body {
margin: 0;
padding: 0;
background-color: #222;
font-family: 'Lato', sans-serif;
color: #fff;
}
h1 {
margin: 0;
font-size: 36px;
font-weight: 100;
}
a { text-decoration: none; }
a:hover { text-decoration: none; }
img {
margin: 0 11px 0 0;
width: 32px;
height: 32px;
}
.content {
position: relative;
margin: 144px auto 0;
border: 1px solid #fff;
border-top: none;
border-bottom: none;
border-radius: 1000px;
padding: 88px 72px 56px;
width: 144px;
height: 144px;
animation: color 5s linear infinite;
}
.content:before {
display: block;
position: absolute;
top: 0%;
left: 0%;
border: 1px solid #fff;
border-top: none;
border-bottom: none;
border-radius: 1000px;
padding: 48px;
width: 192px;
height: 192px;
content: " ";
pointer-events: none;
animation: spin 7s ease-in-out infinite, color 9s linear infinite;
}
@keyframes spin {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}
@keyframes color {
0% {border-color: hsl(0, 80%, 80%);}
10% {border-color: hsl(36, 80%, 80%);}
20% {border-color: hsl(72, 80%, 80%);}
30% {border-color: hsl(108, 80%, 80%);}
40% {border-color: hsl(144, 80%, 80%);}
50% {border-color: hsl(180, 80%, 80%);}
60% {border-color: hsl(216, 80%, 80%);}
70% {border-color: hsl(252, 80%, 80%);}
80% {border-color: hsl(288, 80%, 80%);}
90% {border-color: hsl(324, 80%, 80%);}
100% {border-color: hsl(360, 80%, 80%);}
}
</style>
</head>
<body>
<div class="content">
<h1>sakmt.net</h1>
<a href="https://www.facebook.com/kirimotch">
<img src="img/facebook.png" alt="facebook" />
</a>
<a href="https://twitter.com/kirimotch">
<img src="img/twitter.png" alt="twitter" />
</a>
<a href="https://github.com/sakmt">
<img src="img/github.png" alt="github" />
</a>
</div>
</body>
</html>