-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle.css
194 lines (186 loc) · 4.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
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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
:root{
--background-nav:#131921;
--color: #cd9042;
--color1:#fff;
}
body{
background-color: #eaeded;
}
/* ======Golabel Classes====== */
ul{
list-style-type: none;
}
a{
text-decoration: none;
}
.d-flex{
display: flex;
}
/* ====X==Golabel Classes==X==== */
/* ======Navigatyion Bar===== */
h2{
display:none;
padding:50px;
text-align: center;
color:var(--color);
}
nav{
width: 100%;
background-color: var(--background-nav);
padding:5px 10px;
align-items: center;
position: sticky;
top:0;
z-index: 100;
}
nav .nav_brand a img{
width: 100px;
margin:20px 18px 0;
}
nav .search{
flex:1;
}
nav .search input{
width: 100%;
padding: 10px;
border: none;
}
nav .search .fa-search{
padding:10px;
background-color:var(--color);
}
nav .nav_menu{
justify-content: space-evenly;
align-items: center
}
nav .nav_menu li{
margin:0px 10px;
}
nav .nav_menu li a{
color:var(--color1);
font-size: 10px;
}
nav .nav_menu li a span{
font-size: 13px;
font-weight: bold;
}
/* ===X===Navigatyion Bar===X== */
/* =======Banner===== */
.banner{
width: 100%;
}
.banner img{
width: 100%;
}
.banner .banner_img{
margin-bottom: -153px;
-webkit-mask-image: linear-gradient(180deg, #000, transparent);
}
/* ====X===Banner==X=== */
/* ======Product====== */
.product{
padding: 0px 15px;
}
.product .product_row .product_body{
width: 100%;
background-color: var(--color1);
padding:20px;
margin:10px;
z-index: 1;
}
.product .product_row .product_body .product_description p{
font-size:18px;
}
.product .product_row .product_body .product_price p{
font-size:18px;
margin:5px 0px;
}
.product .product_row .product_body .product_price p span{
font-size:20px;
font-weight:bold;
}
.product .product_row .rating li{
margin-right: 3px;
font-size:20px;
}
.product .product_row .rating li .fa-star{
color: var(--color);
}
.product .product_row .product_body .product_img{
justify-content:center;
}
.product .product_row .product_body .product_img img{
height:200px;
margin:10px 0px;
}
.product .product_row .button-cart{
justify-content:center;
margin:10px 0px;
}
.product .product_row .button-cart button{
padding:5px 10px;
cursor: pointer;
border: none;
font-size:16px;
background-color:var(--color);
}
/* ====X==Product==X==== */
/* ======Footer===== */
.footer{
background-color:var(--background-nav);
padding:50px;
}
.footer .footer_row{
padding-bottom: 20px;
justify-content:space-around;
flex-wrap: wrap;
align-items:center;
border-bottom: 1px solid var(--color);
}
.footer .footer_row .logo img{
width: 100px;
}
.footer .footer_row .pages ul li,.footer .footer_row .contact ul li{
margin:5px 0px;
font-size: 18px;
text-align: center;
}
.footer .footer_row .pages ul li a{
color: var(--color1);
text-transform: capitalize;
}
.footer .footer_row .contact ul li a span{
color: var(--color1);
margin-left: 10px;
}
.footer .footer_row .contact ul li a{
color: var(--color);
}
.footer .developer {
text-align: center;
margin-top: 10px;
}
.footer .developer a{
color: var(--color1);
font-size: 16px;
}
.footer .developer a span{
color: var(--color);
font-size:18px;
}
/* ====X==Footer==X==== */
/* ====Responsive Ness=== */
@media(max-width:716px){
h2{
display:flex;
}
.banner, .none,.product,.footer{
display:none;
}
}
/* ==X==Responsive Ness=X== */