-
Notifications
You must be signed in to change notification settings - Fork 0
/
landing_page.css
99 lines (98 loc) · 2.11 KB
/
landing_page.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
body{
box-sizing:border-box;
}
#header{
position:fixed;
top:0px;
width:100%;
height:8vw;
display: flex;
background-color: whitesmoke;
box-shadow: 5px black;
z-index:2;
}
#nav-bar{
display:flex;
justify-content: space-between;
width:100%;
margin-right: 5px;
}
.nav-link{
text-align: center;
align-self: center;
text-decoration: none;
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
color:darkcyan;
font-size: 3vw;
height:70%;
border-radius: 20px;
margin:5px;
padding: 20px 10px 10px 10px;
}
.nav-link:hover,#footer-links:hover{
background-color: rgb(255, 255, 255);
}
#header-img{
height:8vw;
}
#blank{
width:50vw;
}
main{
position:relative;
top:12vw;
margin:0 4vw 15vw 4vw;
padding-bottom: 30vw;
display:grid;
justify-items: center;
row-gap: 5%;
}
@media (max-width:1000px){
main{
margin-bottom: 20vw;
}
}
@media(max-width:800px){
main{
margin-bottom:30vw;
}
}
#form{
display:grid;
justify-items: center;
}
#submit,#email,p{
font-size: 1.6vw;
}
#features{
width:50%;
}
h1{
font-size: 3vw;
text-align: center;
}
div{
display:flex;
}
#video,#product-img{
max-width: 100%;
}
#footer{
z-index:5;
margin:5vw 15vw 0 15vw;
height:5vw;
display: flex;
background-color: whitesmoke;
box-shadow: 2px solid black;
}
#footer-links{
text-align: center;
align-self: center;
text-decoration: none;
color:darkcyan;
font-size: 1.5vw;
height:50%;
border-radius: 20px;
margin:5px;
padding: 20px 10px 10px 10px;
}