-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
102 lines (86 loc) · 1.39 KB
/
styles.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
100
101
102
/* Remove arrows for Chrome, Safari, Edge, and other WebKit browsers */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
/* Remove arrows for Firefox */
input[type="number"] {
-moz-appearance: textfield;
}
body {
padding: 0;
margin: 0;
background-color: rgb(239, 244, 248);
}
.logo {
height: 100px;
width: 130px;
margin-bottom: 5vh;
}
#hero {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 25vh;
}
.searchArea {
display: flex;
align-items: center;
height: 4vh;
padding: 0;
}
#searchButton {
height: 100%;
border: 0;
margin: 0;
}
#searchBar,
#searchBar2 {
color: rgb(175, 5, 5);
height: 100%;
background-color: azure;
border: 0;
margin: 0;
}
#searchBar::placeholder,
#searchBar2::placeholder {
color: rgb(175, 5, 5);
}
/*Prevent iphone from zooming in*/
input,
textarea,
select {
font-size: 16px;
outline: none;
}
#hero2 {
display: none;
width: 100%;
align-items: center;
justify-content: center;
margin-top: 2vh;
}
.logo2 {
width: 50px;
margin-left: 2vw;
margin-right: 2vw;
}
#productSection {
display: none;
font-weight: 800;
flex-direction: column;
align-items: center;
width: 100%;
}
#productImage {
margin-top: 3vh;
width: 76%;
height: 40vh;
}
.productInfo {
width: 90%;
}
#map {
max-width: 100vw;
}