-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
75 lines (61 loc) · 1.25 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
* {
font-family: 'Times New Roman', Times, serif;
font-size: 18px;
}
body {
margin: 0; /* Reset default margin */
padding: 0; /* Reset default padding */
}
header {
position: sticky;
overflow: hidden;
}
.nav-bar {
display: flex;
justify-content: space-between;
align-items: center; /* Vertically center items */
background-color: #270858;
padding: 20px;
color: white;
}
.brand {
font-weight: bolder;
text-decoration: none;
color: white;
}
.search-bar {
width: 55%;
}
.search-bar input {
width: 100%; /* Adjust input width */
}
.cart {
text-align: center;
font-weight: bolder;
text-decoration: none;
color: white;
padding-right: 20px;
}
.nav-bar-wrapper {
display: flex;
justify-content: space-between;
padding: 15px;
background-color: #4b1b78;
font-weight: bold;
color: white;
}
.img {
display: flex;
justify-content: center;
align-items: center;
}
.img img {
width: 350px;
height: 350px;
}
.con {
display: flex;
justify-content: center;
align-items: center;
gap: 4rem;
}