-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.css
106 lines (91 loc) · 2 KB
/
index.css
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
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono&family=Open+Sans:wght@300&display=swap');
@keyframes unblur {
from {
font-size: 50px;
filter: blur(50px);
}
to {
font-size: 100px;
filter: blur(0px);
}
}
@keyframes unblur2 {
from { filter: blur(50px); }
to { filter: blur(0px); }
}
@keyframes heightchange {
from { height: 150px; }
to { height: 100px; }
}
@keyframes showstuff {
from {
height: 0;
filter: blur(20px);
}
30% {
filter: blur(5px);
}
to {
height: 141.6px;
filter: blur(0px);
}
}
html, body {
padding: 0;
margin: 0;
box-sizing: border-box;
width: 100%;
height: 100%;
background-color: black;
color: white;
white-space: nowrap;
overflow: hidden;
}
#name {
font-size: 100px;
animation: cubic-bezier(0.67, 0.01, 0.22, 1.01) unblur 1.5s;
font-family: 'IBM Plex Mono', monospace;
margin: 20px;
}
#blurb {
animation: cubic-bezier(0.67, 0.01, 0.22, 1.01) unblur2 1s;
font-family: 'Open Sans', sans-serif;
font-size: 20px;
}
#contentstuff {
overflow: hidden;
font-size: 30px;
font-family: 'Open Sans';
width: 80%;
text-align: center;
border: solid white;
border-width: 1px 0 1px 0;
margin: 30px;
height: 0;
animation: cubic-bezier(0.67, 0.01, 0.22, 1.01) showstuff 0.5s;
animation-delay: 0.5s;
animation-fill-mode: forwards;
filter: blur(20px);
display: grid;
}
.icon {
animation: cubic-bezier(0.67, 0.01, 0.22, 1.01) heightchange 1s;
filter: invert(1);
height: 100px;
margin: 20px 30px 0 30px;
}
#page {
height: 100%;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
}
#realblurb {
padding-right: 20px;
grid-row: 1;
}
#projectgrid {
padding-right: 20px;
grid-row: 1;
}