-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.css
More file actions
48 lines (41 loc) · 689 Bytes
/
Copy pathindex.css
File metadata and controls
48 lines (41 loc) · 689 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
body {
background: rgb(0, 0, 0);
}
.header {
color: #fff;
font-family: monospace;
margin:12px;
float: right;
}
.details {
position: fixed;
top: 50%;
left: 50%;
margin-top: -100px;
margin-left: -200px;
}
a {
text-decoration: none;
}
:any-link {
color: #fff
}
.typewriter h1 {
color: #fff;
font-family: monospace;
overflow: hidden;
border-right: 0.15em solid orange;
white-space: nowrap;
margin: 0 auto;
letter-spacing: 0.15em;
animation: typing 4.5s steps(40, end);
animation-iteration-count: infinite;
}
@keyframes typing {
from {
width: 0;
}
to {
width: 100%;
}
}