-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstore.css
More file actions
125 lines (107 loc) · 1.93 KB
/
Copy pathstore.css
File metadata and controls
125 lines (107 loc) · 1.93 KB
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
@import url('https://fonts.googleapis.com/css?family=Raleway:300,400,700');
@import url("https://fonts.googleapis.com/css?family=Metal+Mania");
* {
box-sizing: border-box;
font-family: Raleway;
color: #777;
}
html, body {
margin: 0;
padding: 0;
min-height: 100%;
}
.shop-item {
margin: 30px;
}
.shop-item-title {
display: block;
width: 100%;
text-align: center;
font-weight: bold;
font-size: 1.5em;
color: #333;
margin-bottom: 15px;
}
.shop-item-image {
height: 250px;
}
.shop-item-button{
margin-top: 1rem;
display:block;
padding:.9rem 3rem;
border-radius: .5rem;
color:#fff;
background:var(--green);
font-size: 1.7rem;
cursor: pointer;
font-weight: 500;
text-align: center;
}
.shop-item-button:hover{
background:var(--dark-color);
}
.shop-item-details {
align-items: center;
padding: 5px;
}
.shop-item-price {
color: #333;
font-weight: bolder;
font-size: 30px;
text-align: center;
}
.shop-items {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.cart-header {
font-weight: bold;
font-size: 1.25em;
color: #333;
}
.cart-column {
display: flex;
align-items: center;
border-bottom: 1px solid black;
margin-right: 1.5em;
padding-bottom: 10px;
margin-top: 10px;
}
.cart-row {
display: flex;
}
.cart-item {
width: 45%;
}
.cart-price {
width: 20%;
font-size: 1.2em;
color: #333;
}
.cart-row:last-child {
border-bottom: 1px solid black;
}
.cart-row:last-child .cart-column {
border: none;
}
.cart-total {
text-align: end;
margin-top: 10px;
margin-right: 10px;
}
.cart-total-title {
font-weight: bold;
font-size: 1.5em;
color: black;
margin-right: 20px;
}
.cart-total-price {
color: #333;
font-size: 1.1em;
}
.btn-purchase {
display: block;
margin: 40px auto 80px auto;
font-size: 1.75em;
}