-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.css
117 lines (106 loc) · 1.98 KB
/
home.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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
h1 {
font-family: 'Swanky and Moo Moo', cursive;
color: white;
text-align: center;
font-size: 15vw;
animation-name: up;
animation-duration: 1s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes up {
from {
color: transparent;
padding-top: 20vh;
}
to {
color: white;
padding-top: 5vh;
}
}
@keyframes up2 {
from {
color: transparent;
padding-top: 20vh;
}
to {
color: white;
padding-top: 10vh;
}
}
h2 {
font-family: 'Montserrat', sans-serif;
text-align: center;
color: transparent;
animation-name: fadein;
animation-delay: 1s;
animation-duration: 1s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadein {
from {
color: transparent;
}
to {
color: #A6A6A6;
}
}
h4 {
text-align: center;
font-family: 'Roboto', sans-serif;
color: transparent;
margin-top: 20vh;
margin-bottom: 20vh;
animation-name: fadein2;
animation-delay: 1s;
animation-duration: 1s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
}
@keyframes fadein2 {
from {
color: transparent;
}
to {
color: #737373;
}
}
@media (max-width: 800px) {
h1 {
font-size: 20vw;
animation-name: up2;
}
h4 {
margin-top: 40vh;
}
}
#about {
display: flex;
justify-content: center;
align-items: center;
margin: auto;
border: 1px solid #A6A6A6;
width: 75vw;
color: white;
padding: 2vh 2vw 2vh 2vw;
font-family: 'Roboto', sans-serif;
margin-bottom: 10vh;
}
h3 {
font-family: 'Montserrat', sans-serif;
text-align: center;
color: #A6A6A6;
margin-top: 10vh;
font-size: 5vh;
margin-bottom: 5vh;
}
.text {
text-align: center;
color: white;
font-family: 'Roboto', sans-serif;
padding-bottom: 3vh;
}
#space {
margin-bottom: 10vh;
}