-
Notifications
You must be signed in to change notification settings - Fork 2
/
checkout.css
70 lines (70 loc) · 1.19 KB
/
checkout.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
body {
margin: 0;
padding: 0;
}
ul {
margin: 0 0 0 400px;
padding: 0;
display: flex;
gap: 110px;
margin-top: 10px;
}
li {
font-family: "Poppins", sans-serif;
font-size: 18px;
color: white;
cursor: pointer;
}
li:hover {
color: black;
}
li::marker {
font-size: 2rem;
font-weight: bolder;
}
#navbar a{
text-decoration: none;
}
a:hover {
color: black;
}
#navbar {
width: 96.5%;
overflow: auto;
/* border: 2px solid grey; */
padding: 25px;
box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
display: flex;
}
#navbar img {
height: 28px;
width: 40px;
margin-top: 13px;
margin-left: 90px;
cursor: pointer;
}
#navbar select {
height: 20px;
width: 80px;
position: absolute;
margin-top: 17px;
border: none;
cursor: pointer;
}
.logo img {
position: absolute;
margin-top: 15px;
margin-left: 100px;
}
.logo2 img {
position: relative;
margin-top: 15px;
margin-left: 100px;
}
#nabvar a{
width: 100px;
display: block;
padding: 20px 15px;
text-align: center;
text-decoration: none;
}