-
Notifications
You must be signed in to change notification settings - Fork 0
/
home.css
65 lines (59 loc) · 1.05 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
#home{
/* margin-left: 9px; */
height: 100vh;
overflow: hidden;
/* background: rgba(0, 0, 0, 0.699); */
}
#home .inhome{
margin-top: 5%;
}
.inhome .introimg{
display: flex;
justify-content: center;
}
.introimg svg{
/* background-color: white; */
height: 40vh;
width: 95%;
animation: img var(--load-time) ease-in;
}
.inhome .homepg{
display: flex;
justify-content: center;
align-items: center;
height:40vh;
/* background-color: rgb(37, 24, 24); */
}
.homepg p{
font-family: sans-serif;
font-size: 1.4em;
width: 90%;
text-align: center;
animation: page var(--load-time) ease-in;
}
.homepg p a{
text-decoration: none;
color: rgb(0, 42, 78);
/* display:contents; */
/* font-size:0.8em; */
width: 90%;
text-align: center;
}
@keyframes img{
0%{
transform: translatex(100%);
opacity: 0;
}
100%{
transform: translate(0%);
}
}
@keyframes page{
0%{
transform: translateY(50%);
opacity: 0;
}
100%{
transform: translateY(0%);
}
}