-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstruction.html
More file actions
76 lines (66 loc) · 1.72 KB
/
Copy pathconstruction.html
File metadata and controls
76 lines (66 loc) · 1.72 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Portfolio</title>
<style>
body {
background: #3e3e47;
}
.main-div{
vertical-align: middle;
}
.main-text {
color: rgb(255, 255, 255);
font-weight: 900;
font-family: monospace;
letter-spacing: 0.2em;
animation: text-animation 1s;
}
.symbol{
font-size: 80px;
text-align: center;
animation: scale-animation 1s ease-in-out;
}
@keyframes scale-animation {
0% {
transform: scale(0.2);
}
100% {
transform: scale(1);
}
}
.typewriter-div{
display: flex;
justify-content: center;
}
.typewriter h1 {
overflow: hidden;
border-right: .15em solid rgb(255, 255, 255);
white-space: nowrap;
margin: 0 auto;
animation:
typing-animation 2s steps(30, end),
cursor-blink-animation .5s step-end infinite;
}
@keyframes typing-animation {
from { width: 0 }
to { width: 100% }
}
@keyframes cursor-blink-animation {
from, to { border-color: transparent }
50% { border-color: rgb(0, 255, 20) }
}
</style>
</head>
<body>
<div class="main-div">
<h1 class="symbol">🛠️</h1>
<div class="typewriter-div">
<div class="typewriter">
<h1 class="main-text">Currently Under Construction</h1>
</div>
</div>
</div>
</body>
</html>