-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (124 loc) · 2.24 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
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
*{
padding: 0;
margin: 0;
color: white;
font-family: Arial;
}
.navbar{
height: 60px;
background-color: #0f1111;
color: white;
display: flex;
align-items: center;
justify-content: space-around;
}
.navbar:hover{
border: 2px solid white;
}
.logo{
background-image: url("Amazon-Logo.jpg");
background-size: cover;
height: 50px;
width: 120px;
margin-left: 3px;
margin-top: 2px;
}
.location{
color: #cccccc;
}
.navsearch{
display: inline-flex;
color: black;
align-items: center;
height: 35px;
width: 600px;
border-radius: 4px;
}
.panel{
height: 30px;
background-color: #222f3d;
display: flex;
align-items: center;
}
.panel-all{
padding-left: 20px;
padding-right: 10px;
}
.panel-ops p{
display: inline;
margin-left: 15px;
}
.panel-ops {
width: 70%;
font-size: 0.85rem;
}
.hero-section{
background-image: url("Amazon-Hero-Page.jpg");
background-size: cover;
height: 350px;
display: flex;
justify-content: center;
align-items: flex-end;
}
.hero-msg{
background-color: white;
color: black;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
width: 85%;
margin-bottom: 10px;
}
.hero-msg a{
color: #007185;
}
.shop-section{
color: black;
display: flex;
align-items: center;
justify-content: space-evenly;
}
.box{
height: 420px;
color: black;
width: 23%;
background-color: white;
padding: 20px 0px 15px;
margin-top: 20px;
}
.box-content h2{
color: black;
}
.box-content p{
color: #007185;
}
.box-content{
margin-left: 1rem;
margin-right: 1rem;
}
.box-img{
height: 350px;
background-size: cover;
margin-top: 1rem;
margin-bottom: 1rem;
}
footer{
margin-top: 15px;
}
.foot-panel{
background-color: #37475a;
height: 50px;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.85 rem;
}
.foot-end{
height: 30px;
display: flex;
align-items: center;
justify-content: center;
background-color: #0f1111;
}
/*Made by Niharika Saxena*/