-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
86 lines (74 loc) · 1.46 KB
/
main.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
@keyframes upDown {
from{
transform: translateY(-2px);
}
to{
/* transform:scaleY(1); */
transform: translateY(5px);
}
}
main{
color: white;
overflow-x: hidden;
}
#home{
height: 100vh;
width: 100vw;
background: black;
background-image: url('./assets/background.jpg');
background-repeat: no-repeat;
background-position: center;
}
#home_centre_div{
height:220px;
padding: 10px;
margin-top: 150px;
box-sizing: border-box;
justify-content: space-between;
}
#home_centre_div div{
margin-top: 5px;
}
#home_centre_div_text>h1{
font-size:54px;
word-spacing: 0.6rem;
}
.social-links{
color: white;
margin: 0 8px;
}
.social-links:hover{
border:1px solid white;
border-radius: 50%;
box-shadow: 0 0 4px 4px white;
}
#home_centre_div_download{
border:2px solid white;
padding: 8px;
border-radius: 50px;
width: fit-content;
}
#home_centre_div_download:hover{
background-color: white;
border: 2px solid black;
}
#home_centre_div_download:hover>a{
color: black;
}
#home_centre_div_download>a{
color: white;
text-decoration: none;
}
#home_centre_div_downward_arrow{
margin-top: 90px;
animation: upDown 1s ease-in-out infinite;
}
#home_centre_div_downward_arrow>i{
font-size: 30px;
}
@media screen and (max-width:500px) {
#home_centre_div_text > h1{
font-size:38px;
word-spacing: 0.4rem;
}
}