-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
87 lines (74 loc) · 1.62 KB
/
index.css
File metadata and controls
87 lines (74 loc) · 1.62 KB
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
:root {
--chromatic-abberation-red-1: -2px 2px rgba(100, 0, 0, 0.2);
--chromatic-abberation-red-2: -2px 2px 3px rgba(100, 0, 0, 0.2);
--chromatic-abberation-blue-1: 2px -2px rgba(0, 0, 100, 0.2);
--chromatic-abberation-blue-2: 2px -2px 3px rgba(0, 0, 100, 0.2);
--chromatic-abberation: var(--chromatic-abberation-red-1), var(--chromatic-abberation-red-2), var(--chromatic-abberation-blue-1), var(--chromatic-abberation-blue-2);
}
body {
overflow: hidden;
}
body, .terminal {
height: 100vh;
width: 110vw;
overflow-x: hidden;
border: 0;
padding: 0;
left: 0;
margin: 0;
}
.terminal {
/* white-space: pre; */
background: rgb(10, 10, 10);
display: block;
font-family: monospace;
font-size: calc(100vw / 40);
max-height: 100vh;
overflow-y: scroll;
/* position: absolute; */
/* text-shadow: var(--chromatic-abberation); */
/* top: 0; */
}
.terminal * {
margin: 0;
padding: 0;
white-space: pre-line;
max-width: 100vw;
word-break: break-word;
overflow-wrap: break-word;
}
.terminal .prompt::before {
content: attr(data-host)'>';
pointer-events: none;
}
@keyframes blink {
0% { opacity: 1; }
50% { opacity: 1; }
51% { opacity: 0; }
100% { opacity: 0; }
}
.terminal .prompt::after {
content: '\2588';
pointer-events: none;
animation: blink 1.5s infinite;
}
.center {
display: inline-block;
width: 100%;
text-align: center;
}
.vt232 {
font-family: 'VT323', monospace;
}
.space-mono {
font-family: 'Space Mono', monospace;
}
.share-tech-mono {
font-family: 'Share Tech Mono', monospace;
}
.ibm-plex-mono {
font-family: 'IBM Plex Mono', monospace;
}
.fixedsys {
font-family: 'Fixedsys Excelsior 3.01', monospace;
}