-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
63 lines (42 loc) · 1.15 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
body {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inconsolata', monospace;
width: 100vw;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background:
linear-gradient(to bottom, rgba(131, 138, 241, 0.642),rgba(249, 249, 254, 0.57),rgba(249, 249, 254, 0.57),rgba(102, 155, 253, 0.673));
/* radial-gradient(#eae2fee3,rgba(153, 185, 245, 0.774), #2f6fdeba); */
/* radial-gradient(#ebf1fbfd,rgba(153, 185, 245, 0.774), #2f6fdeba); */
/* linear-gradient(to bottom, rgba(124, 167, 248, 0.854),rgba(152, 158, 238, 0.176),rgba(124, 167, 248, 0.854)); */
}
/*
} */
#type {
text-align: center;
font-size: 5rem;
font-weight: 300;
letter-spacing: 10px;
text-shadow: 0 2px 3px rgba(39, 39, 39, 0.335), 0 -1px 2px rgba(0, 0, 0, 0.2);
color: #2f2f2fa3;
}
#type::after {
content: '';
width: 0.8px;
border-right: 3px solid #2f2f2fa3;
height: 100%;
margin-left: 0.5rem;
animation: blink 1.2s infinite;
}
@keyframes blink {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}