-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (54 loc) · 1.2 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
html, body {
background: url(https://miro.medium.com/max/2000/1*oeEbzD8AtVeuYmDPy1MTKA.jpeg) no-repeat
center center fixed;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.intro{
vertical-align: middle;
text-align: center;
padding-top: 25%;
}
body, h1 {
font-size: 200%;
font-family: 'Ramabhadra', sans-serif;
text-shadow: 4px 4px black;
text-align: auto;
}
#inner {
animation-duration: 1s;
animation-delay: 1s;
animation-iteration-count: 1;
}
@import url('https://fonts.googleapis.com/css?family=Source+Code+Pro');
p {
border-right: solid 3px rgba(0, 0, 0, 0.75);
white-space: nowrap;
overflow: hidden;
font-family: 'Source Code Pro', monospace;
font-size: 20px;
color: rgba(255,255,255,.70);
text-align: center;
vertical-align: middle;
}
/* Animation */
p {
animation: animated-text 4s steps(39,end) 1s 1 normal both,
animated-cursor 600ms steps(39,end) infinite;
}
/* text animation */
@keyframes animated-text{
from{width: 0;}
to{width: 100%;}
}
@media (max-width: 768px) {
.content h1 {
font-size: 300%;
}
}
footer {
display: flex;
justify-content: center;
}