-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtype.css
More file actions
47 lines (43 loc) · 741 Bytes
/
type.css
File metadata and controls
47 lines (43 loc) · 741 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
body {
background-color: white;
}
.output {
text-align:center;
font-family: 'Source Code Pro', monospace;
color:white;
h1 {
font-size:30px;
}
}
/* Cursor Styling */
.cursor::after {
content:'';
display:inline-block;
margin-left:3px;
background-color:white;
animation-name:blink;
animation-duration:0.5s;
animation-iteration-count: infinite;
}
h1.cursor::after {
height:24px;
width:13px;
}
p.cursor::after {
height:13px;
width:6px;
}
@keyframes blink {
0% {
opacity:1;
}
49% {
opacity:1;
}
50% {
opacity:0;
}
100% {
opacity:0;
}
}