-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnav.css
102 lines (86 loc) · 1.74 KB
/
nav.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
#navbar {
background-color: #dd0285;
width: 100%;
height: 50px;
display: flex;
justify-content: space-evenly;
align-items: center;
color: white;
}
.option {
width: 70%;
display: flex;
justify-content: space-evenly;
align-items: center;
}
.option>h3 {
font-size: 1em;
padding: 14px 15px;
color: white;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.option>h3:hover,
#makeup {
background-color: #b7026f;
}
.column {
flex-direction: column;
}
.open-div {
width: 85%;
background-color: #ffffff;
margin: auto;
padding: 20px;
display: flex;
justify-content: space-between;
}
.open-div>img {
max-height: 400px;
margin: auto 0px;
}
.open-div>div>p {
font-size: 14px;
line-height: 25px;
margin-top: 5px;
}
#topDiv {
width: 80%;
margin: auto;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid #666666;
}
#topBtn {
background-color: #dd0285;
color: white;
border: none;
padding: 10px 25px;
}
#mainDiv {
/* border: 1px solid red; */
width: 80%;
margin: 25px auto;
}
#row1,
#row2 {
/* border: 1px solid black; */
display: flex;
justify-content: space-between;
align-items: center;
margin: 25px 0px;
}
#row1>div,
#row2>div {
width: 13%;
padding: 15px 5px;
border: 1px solid #ccc;
font-weight: 500;
font-size: 14px;
display: flex;
justify-content: center;
align-items: center;
}
#cart-div>span{
color: white;
}