forked from cyclic-software/express-hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
37 lines (32 loc) · 697 Bytes
/
main.css
File metadata and controls
37 lines (32 loc) · 697 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
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap");
body {
background-color: #0f2c41;
background-image: url("https://i.imgur.com/PFnfpkq.png");
text-align: center;
font-weight: 700;
}
#hello-wrapper {
color: #fff;
font-family: 'Source Sans Pro', sans-serif;
}
.typewriter {
border-right: solid 5px transparent;
white-space: nowrap;
overflow: hidden;
font-family: 'Source Sans Pro', sans-serif;
font-size: 50px;
animation:
animated-text 1.2s steps(17, end) 1s 1 normal both
}
/* text animation */
@keyframes animated-text {
from {
width: 0;
}
to {
width: 100%;
}
}
#particles-js {
height: 100vh;
}