-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathabout.css
More file actions
49 lines (44 loc) · 833 Bytes
/
about.css
File metadata and controls
49 lines (44 loc) · 833 Bytes
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
.typewriter-container {
height: calc(clamp(6px, 4vw, 50px) * 1.5); /* Height based on font size with some extra space */
display: flex;
align-items: center;
}
.typewriter-text {
display: inline-block;
font-size: clamp(6px, 4vw, 50px);
}
.blinker {
display: inline-block;
font-size: clamp(6px, 4vw, 50px);
color: #800080;
animation: blink 1s step-end infinite;
}
@keyframes blink {
from,
to {
opacity: 0;
}
50% {
opacity: 1;
}
}
.instagram-embed blockquote {
max-width: 800px;
}
@media (max-width: 800px) {
.instagram-embed {
margin-bottom: 80px;
}
.instagram-embed blockquote {
max-width: 300px;
}
.typewriter-container {
height: calc(5vw * 1.5);
min-height: 50px;
padding-top: 50px;
}
.typewriter-text {
font-size: 5vw;
min-height: 50px;
}
}