-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
116 lines (102 loc) · 2.54 KB
/
index.html
File metadata and controls
116 lines (102 loc) · 2.54 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Under Construction | abulava</title>
<style>
* {
box-sizing: border-box;
}
body,
html {
margin: 0;
padding: 0;
width: 100%;
height: 100vh;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
display: grid;
place-items: center;
background: linear-gradient(-45deg, #234e70, #3b7ba8, #4b3061, #6a5acd);
background-size: 400% 400%;
animation: gradient 15s ease infinite;
color: white;
text-align: center;
overflow: hidden;
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.container {
width: 100%;
max-width: 600px;
padding: 3rem;
background: rgba(0, 0, 0, 0.3);
border-radius: 20px;
backdrop-filter: blur(10px);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
margin: auto;
}
h1 {
font-size: 3rem;
margin: 0 0 1rem 0;
}
p {
font-size: 1.2rem;
margin: 0.5rem 0;
}
.links {
margin-top: 2rem;
display: block;
}
.links a {
display: inline-block;
color: white;
text-decoration: none;
margin: 10px;
padding: 10px 25px;
border: 1px solid rgba(255, 255, 255, 0.4);
border-radius: 25px;
transition: all 0.3s ease;
}
.links a:hover {
background: white;
color: #234e70;
}
.fade-in {
animation: fadeIn 1.5s ease-out;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<div class="container fade-in">
<h1>Coming Soon</h1>
<p>Hi! I'm <strong>Andrey Bulava</strong>.</p>
<p>
My opinionated collection of modern tools for dev work is coming soon <span style="opacity: 0.67;">(or
eventually, no promises on the ETA)</span>.
</p>
<div class="links">
<a href="https://github.com/abulava">GitHub</a>
<a href="https://www.linkedin.com/in/andrii-bulava">LinkedIn</a>
</div>
</div>
</body>
</html>