-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
76 lines (55 loc) · 1.07 KB
/
style.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
.center {
text-align: center;
}
.left {
text-align: left;
}
.right {
text-align: right;
}
.p1 {
font-size: 12.2px;
}
/* if want Protect copy letters on screen write (none)*/
body {
user-select: ;
}
::selection{
color: #A3FF00;
}
/* Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);
/* Global */
body{
height: 100%;
width: 100%:
padding: 4em;
color: #09E319;
font-family: 'Anonymous Pro', monospace;
background-color: #000000;
}
.line-1{
position: relative;
top: 2.6%;
width: 20em;
margin: 0 auto;
border-right: 2px solid rgba(255,255,255,.75);
font-size: 25;
text-align: center;
white-space: nowrap;
overflow: hidden;
transform: translateY(-50%);
}
/* Animation */
.anim-typewriter{
animation: typewriter 4s steps(44) 1s 1 normal both,
blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter{
from{width: 0;}
to{width: 22em;}
}
@keyframes blinkTextCursor{
from{border-right-color: rgba(255,255,255,.75);}
to{border-right-color: transparent;}
}