-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCart Page.css
108 lines (95 loc) · 1.68 KB
/
Cart Page.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
body{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
h2{
color: #fff;
padding: 5px;
margin: 20px 50px 0px 50px;
background-color: #596275;
text-transform: uppercase;
text-align: left;
padding-left: 50px;
}
.navBar{
background-color: #ff4757;
border-top: 1px solid #303952;
border-bottom: 1px solid #303952;
padding: 30px 0 30px 0px;
position: sticky;
z-index: 1000 !important;
top: 0;
margin-bottom: 20px;
}
.navBar > li {
display: inline-block;
padding-left: 50px;
font-size: 15px;
text-transform: uppercase;
font-weight: bold;
}
.navBar > li > a {
text-decoration: none;
color: #303952;
}
.navBar > li > a:hover{
background-color: #303952;
color: #fff;
padding: 7px;
}
.navBar .current{
background-color: #303952;
color: #fff;
padding: 7px;
}
.logo{
font-family: 'berlin';
float: right;
padding-right: 200px;
font-size: 20px;
font-weight: bold;
}
.logo > a {
text-decoration: none;
color: #fff;
}
.search_box{
float: right;
padding-right: 50px;
margin-top: -7px;
}
.search_box input[type="text"]{
padding:5px;
border-style:1px;
font-size: 15px;
font-family: sans-serif;
outline:none;
}
.search_box button{
float: right;
background: #303952;
outline: none;
color: white;
cursor: pointer;
position: relative;
padding:7px;
font-family: sans-serif;
border:0px;
font-size: 15px;
}
.search_box button:hover{
background-color: #596275;
}
.cart h1 {
color: #596275;
text-transform: uppercase;
text-align: center;
}
.cart p{
margin-top: 100px;
color: red;
font-size: 50px;
text-align: center;
}