-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
91 lines (83 loc) · 1.89 KB
/
index.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
<!DOCTYPE html>
<head>
<meta charset="UTF-8">
<title>Scqr Inc. Github Page</title>
<meta name="description" content="Scqr Inc. Github Page">
<meta name="author" content="Scqr Inc.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" href="https://avatars3.githubusercontent.com/u/51468105?s=40&v=4" id="favicon-ico">
<style>
html, body, div {
padding: 0;
margin: 0;
}
.container {
width: 100vw;
height: 100vh;
padding-top: 4.2em;
background-color: #f4f4f4;
color: #252525;
animation: fadein 2.7s;
-webkit-animation: fadein 2.7s;
-ms-animation: fadein 2.7s;
}
@keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-webkit-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
@-ms-keyframes fadein {
from { opacity: 0; }
to { opacity: 1; }
}
.d-flex-center-start {
display: flex;
justify-content: center;
align-items: flex-start;
}
.hello-world {
width: 100%;
height: 40%;
letter-spacing: 3.0px;
}
.we-are {
width: 100%;
height: 50%;
letter-spacing: 3.2px;
border-bottom: 0.6px solid #7b7b7b;
}
a.scqr {
color: #07a0ed;
margin-left: 0.7rem;
margin-right: 0.7rem;
}
a.scqr:hover {
color: #9bd9f7;
}
.scqr h1 {
display: inline;
font-size: 1.2rem;
}
</style>
</head>
<body>
<div class="container">
<div class="hello-world d-flex-center-start">
🦉 🥳 "Hello, world." 🤗 🦔
</div>
<div class="we-are d-flex-center-start">
We are <a class="scqr"><h1>Scqr Inc.</h1></a>.
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
setTimeout(function() {
document.getElementsByClassName('scqr')[0].href = 'https://www.scqr.net/';
}, 4200);
});
</script>
</body>
</html>