-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProductLandingPageTest.css
More file actions
100 lines (84 loc) · 1.43 KB
/
ProductLandingPageTest.css
File metadata and controls
100 lines (84 loc) · 1.43 KB
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
body{
background: #eee;
}
header{
position: fixed;
top: 0;
min-height: 75px;
padding 0px 20px 0px 20px;
display: flex;
justify-content: space-around;
align-items: center;
width: 100%;
background: #eee;
}
.header-img{
width: 100%;
height: 100%;
max-width: 300px;
float: left;
display: flex;
justify-content: center;
align-items: center;
margin-left: 20px;
}
#nav-bar{
float: right;
width: 100%;
height: auto;
}
.nav-link{
float: right;
padding: 0px 40px;
font-size: 20px;
color: black;
text-decoration: none;
}
#form{
display: block;
padding: 75px 100px 75px;
margin-left: auto;
margin-right: auto;
max-width: 100%;
text-align: center;
background: #eee;
}
#email{
height: 20px;
width: 250px;
}
#submit{
height: 25px;
width: 125px;
background-color: #F1C40E;
border: none;
color: black;
font-weight: bold;
}
div{
display: in-line-block;
background: #eee;
margin-left: auto;
margin-right: auto;
max-width: 100%;
padding-left: 200px;
}
#div-img{
width: 50px;
height: 50px;
align: left;
}
video{
display: block;
background: #eee;
margin-left: auto;
margin-right: auto;
max-width: 100%;
align: center;
padding: 50px 0px;
}
@media screen and (max-width: 600px){
body{
background-color: white;
}
}