-
Notifications
You must be signed in to change notification settings - Fork 0
/
cart.css
69 lines (54 loc) · 1.04 KB
/
cart.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
@font-face {
font-family: Ubuntu-Regular;
src: url('../fonts/ubuntu/Ubuntu-Regular.ttf');
}
body, html {
height: 100%;
font-family: Ubuntu-Regular, sans-serif;
}
.nav-bar{
display:block;
overflow:hidden;
}
.searchbox{
float: right;
padding: 6px;
margin-top: 8px;
margin-right: 16px;
border: none;
font-size: 17px;
}
input[type=text]{
border-style: none;
}
.cart{
display:flex;
flex-direction: column;
align-items: center;
width: 500px;
height:fit-content;
border-style: solid;
border-radius: 10px;
border-color:#e9e9e9;
margin: 20px;
}
hr{
max-width:350px;
color:#e9e9e9;
}
.btn{
color:white;
font-size: large;
border-style: none;
margin-top:20px;
margin-bottom:10px;
padding:15px 70px;
border-radius: 10px;;
background: #342e2a;
background: -webkit-linear-gradient(left, #342e2a, #3A434D, #425c76);
}
.remove{
color:blue;
border-style: none;
background-color: white;
}