-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (76 loc) · 1.18 KB
/
style.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
body {
font-family: "Helvetica Neue", Arial, sans-serif;
}
#main {
width: 900px;
margin: auto;
}
#header {
text-align: center;
margin-top: 80px;
}
#nav-bar {
margin: 0 auto;
width: 100vw;
position: fixed;
left: 0;
top: 0;
background: white;
padding-top: 30px;
padding-bottom: 10px;
border-bottom: 2px solid black;
}
.nav-link{
margin: 20px;
color: black;
}
#about{
text-align: center;
margin-top: 50px;
}
#video{
height: 360px;
width: 720px;
}
#products{
display: flex;
justify-content: space-around;
margin-top: 30px;
}
.product{
width: 200px;
border: 2px black solid;
font-size: 17px;
height: 250px;
}
.product-header{
text-align: center;
font-size: 18px;
font-weight: bold;
border-bottom: 2px black solid;
}
@media all and (max-width: 500px){
#products{
flex-direction: column;
margin-left: 100px;
}
.product{
margin-top: 20px;
width: 300px;
}
}
#contact{
margin-top: 30px;
margin-bottom: 30px;
}
#form,
h2{
text-align: center;
}
#email{
width: 300px;
}
input{
font-size: 16px;
height: 25px;
}