-
Notifications
You must be signed in to change notification settings - Fork 0
/
flipkart.css
101 lines (98 loc) · 1.71 KB
/
flipkart.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
body
{
margin: 0;
padding: 0;
}
.navbar
{
width: 100%;
background-color: #2874f0;
padding-bottom: 10px;
padding-top: 5px;
}
.navbar ul
{
margin: 0;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
gap:7%;
list-style: none;
}
.logo
{
margin-left: 30%;
}
a{
text-decoration: none;
font-size: 20px;
color: white;
font-family:Inter, -apple-system, Helvetica, Arial, sans-serif;
font-weight: bold;
}
.navbar ul input
{
width: 200%;
padding: 4%;
font-size: 20px;
font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
}
.navbar button
{
margin-left: 90%;
width: 100px;
padding: 10px 0 10px 0;
color: #2874f0;
font-family: Inter, -apple-system, Helvetica, Arial, sans-serif;
font-size: 20px;
font-weight:550;
background-color: white;
border: none;
}
.cart
{
width: 30%;
}
.navbar2
{
display: flex;
flex-direction: row;
gap: 4.5%;
justify-content: center;
align-items: center;
}
.heads
{
display: flex;
flex-direction: row;
gap: 7%;
margin-left: 3%;
/* justify-content: center;
align-items: center; */
}
label{
text-decoration: none;
font-size: 18px;
color: rgb(0, 0, 0);
font-family:Inter, -apple-system, Helvetica, Arial, sans-serif;
font-weight: 600;
}
.products
{
display: flex;
flex-direction: row;
gap: 3%;
}
h1{
font-family:Inter, -apple-system, Helvetica, Arial, sans-serif;
margin-left: 10px;
}
@media (max-width:900px)
{
.navbar
{
display: flex;
flex-direction: column;
}
}