File size: 459 Bytes
862b14b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
@tailwind base;
@tailwind components;
@tailwind utilities;
@keyframes typing {
	from {
		width: 0;
	}
	to {
		width: 100%;
	}
}
.markdown > * {
	all: revert;
}
.typing {
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	border-right: 0.15em solid rgb(255, 255, 255);
	animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
	from,
	to {
		border-color: transparent;
	}
	50% {
		border-color: orange;
	}
}