-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
70 lines (65 loc) · 1.07 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
<style>
.bb, .bb::before, .bb::after {
position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
}
.top{
padding-top: 150px;
font-family: Glober, sans-serif;
margin: auto;
text-align: center;
font-size: 2.5em;
font-weight: 800;
color: #fff;
}
.bb {
width: 200px;
height: 200px;
margin: auto;
background: url("logo.png") no-repeat 50%/70% rgba(0, 0, 0, 0.1);
color: #0083d4;
box-shadow: inset 0 0 0 1px rgba(0, 131, 212, 0.5);
}
.bb::before, .bb::after {
content: '';
z-index: -1;
margin: -5%;
box-shadow: inset 0 0 0 2px;
animation: clipMe 8s linear infinite;
}
.bb::before {
animation-delay: -4s;
}
@keyframes clipMe {
0%, 100% {
clip: rect(0px, 220px, 2px, 0px);
}
25% {
clip: rect(0px, 2px, 220px, 0px);
}
50% {
clip: rect(218px, 220px, 220px, 0px);
}
75% {
clip: rect(0px, 220px, 220px, 218px);
}
}
html,
body {
height: 100%;
}
body {
position: relative;
background-color: #0f222b;
}
*,
*::before,
*::after {
box-sizing: border-box;
}
</style>
<div class="top">Unikernels</div>
<div class="bb"></div>