forked from phryniszak/jstlink
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
55 lines (46 loc) · 874 Bytes
/
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
.terminal {
position : relative;
font-family : monospace;
font-weight : bold;
padding-left: 0.25rem;
padding-top : 0.5rem;
overflow-y : scroll;
}
/* .terminal:focus {
outline: none;
} */
.terminal>p {
min-height : 1.25rem;
font-size : 1.25rem;
margin : 0;
letter-spacing: 0.03em;
line-height : 1;
}
.terminal>p:last-of-type {
display: contents;
}
.terminal>span {
width : 1rem;
height : 1.25rem;
/* line-height: 1; */
background : rgb(0, 0, 0);
position : absolute;
animation : flash 1s infinite;
}
@keyframes flash {
0% {
visibility: visible;
}
49% {
visibility: visible;
}
50% {
visibility: hidden;
}
99% {
visibility: hidden;
}
100% {
visibility: visible;
}
}