This page was made as a personal project in connection with an educational exercise.
This is NOT the official site of the company or brand identified on the page. The creator of this page is NOT affiliated with the company or brand in any way. DO NOT enter any personal information (such as logins, passwords or credit card numbers) on this site.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
201 lines (189 loc) · 3.69 KB
/
index.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/* main navbar */
* {
margin: 0px;
padding: 0;
}
#navbar {
height: 130px;
width: 100%;
position: fixed;
background-color: white;
}
/* upper flex box */
#navbar div:nth-child(1) {
border-bottom: 2px solid #d4d4d4;
height: 50%;
display: flex;
margin-top: 5px;
}
#navbar div:nth-child(1) a img {
height: 93%;
}
#navbar div:nth-child(1) input {
border: 1px solid grey;
border-radius: 5px;
margin-left: 2em;
width: 30%;
height: 80%;
}
#navbar div:nth-child(1) input::placeholder {
font-size: 1.4em;
color: #99a1a6;
text-align: center;
font-family: Arial, Helvetica, sans-serif;
}
#navbar div:nth-child(1) #nav_thirt_item {
margin-left: 15%;
display: flex;
}
#navbar div:nth-child(1) #nav_thirt_item p {
border-right: 3px solid #dfdfdf;
padding: 10px 15px;
margin: auto;
font-size: 1.2em;
font-family: Arial, Helvetica, sans-serif;
}
#nav_thirt_item a{
text-decoration: none;
color: black;
margin-top:10px
}
#navbar div:nth-child(1) #nav_fourth_item {
margin-left: 10px;
width: 15%;
display: flex;
cursor: pointer;
/* border: 1px solid red; */
}
.newlink {
color: black;
margin-left: 50px;
text-decoration: none;
}
#navbar div:nth-child(1) #nav_fourth_item .newlink .thirt_item {
height: 92%;
/* border: 1px solid yellowgreen; */
display: grid;
}
#cart_logo {
width: 100%;
height: 40px;
}
.thirt_item p {
color: black;
margin: auto;
margin-top: 0px;
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
/* lower boxes/ drop Down menu */
#navbar div:nth-child(2) {
border-bottom: 2px solid #d4d4d4;
height: 50%;
background-color: white;
}
#nav_options ul {
display: flex;
justify-content:space-around;
list-style: none;
height: 100%;
}
#nav_options ul li{
/* border: 1px solid red; */
font-size: 20px;
font-family: Arial, Helvetica, sans-serif;
padding-top:20px;
}
#nav_options ul li:hover{
border-bottom: 4px solid deeppink;
}
#nav_options ul li a{
text-decoration: none;
color: black;
}
#nav_options ul li a:hover{
color: deeppink;
}
/* lowest flex box */
#white {
height: 170px;
}
/* large images */
#first-img-box {
/* border: 1px solid red; */
width: 75%;
padding: 10px;
margin: auto;
}
#first-img-box img {
margin-bottom: 50px;
/* border: 1px solid red; */
width: 100%;
}
/* footer section */
#footer_div {
/* border: 1px solid black; */
background-color: snow;
width: 100%;
display: flex;
}
#footerBox1 {
/* border: 1px solid black; */
margin-left: 10px;
width: 35%;
}
#footerBox1 p:first-child {
font-size: 30px;
font-family: Arial, Helvetica, sans-serif;
font-weight: 700;
margin-bottom: 20px;
}
#footerBox1 p:nth-child(2) {
font-size: 20px;
font-family: Arial, Helvetica, sans-serif;
color: rgb(117, 115, 115);
}
#footerBox2 {
/* border: 1px solid black; */
width: 65%;
}
#footerGP {
display: flex;
justify-content: space-between;
margin-top: 20px;
}
#footerGP img {
width: 45%;
}
/* #ftBox2 {
border: 1px solid red;
} */
#ftBox2 {
display: flex;
/* border: 1px solid red; */
justify-content: space-around;
}
#ftBox2 div:nth-child(3),
#ftBox2 div:nth-child(4) {
margin-top: -5px;
}
#ftBox2 p {
/* border: 1px solid red; */
font-size: 19px;
font-family: Arial, Helvetica, sans-serif;
color: grey;
}
#contact_logo {
display: flex;
justify-content: space-around;
}
#msg_div {
width: 53%;
margin: 50px 0 0 400px;
}
#msg_div p {
font-family: Arial, Helvetica, sans-serif;
background-color: #f7f4f4;
border-radius: 5px;
padding: 10px;
}