-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (42 loc) · 761 Bytes
/
style.css
File metadata and controls
49 lines (42 loc) · 761 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
:root {
--fs-title: clamp(1.5rem, 8vw + 1rem, 9rem);
}
body {
background-color: #141414;
color: white;
margin: 0;
}
title { display: inline-block; }
#title-container {
display: flex;
height: 100vh;
height: 100dvh; /* Better mobile support */
justify-content: center;
align-items: center;
}
#title-container * {
display: inline;
font-family: 'Consolas', monospace;
font-weight: bold;
font-size: var(--fs-title);
}
#title::before {
content: '>';
margin-right: 1ch;
}
#title::after {
content: '▋';
animation: blink 1.2s infinite;
}
@keyframes blink {
0% {
opacity: 0;
} 49.9% {
opacity: 0;
} 50% {
opacity: 1;
}
}
/* #buffer {
opacity: 0;
} */