-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
100 lines (85 loc) · 1.45 KB
/
Copy pathstyles.css
File metadata and controls
100 lines (85 loc) · 1.45 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
.product{
text-align: center;
margin-right: 70px;
margin-left: 70px;
}
.flex-box-product{
width:100%;
display:flex;
flex-wrap:wrap;
text-align: center;
}
h1{
text-align: center;
}
#shoppingCart {
text-align: center;
margin-left: 10%;
margin-right: 10%;
}
#cart {
border-top: 3px solid black;
}
table {
border-collapse: collapse;
width: 100%;
}
th, td {
padding: 8px;
text-align: left;
border-bottom: 1px solid #ddd;
}
tr:nth-child(even){
background-color: #f2f2f2
}
#name {
margin-right: 5px;
padding-right: 50px
}
.product-box{
flex:1;
background-color: rgb(231, 231, 231);
max-width:33%;
min-width: 235px;
margin-right: 10px;
margin-left: 10px;
margin-bottom: 10px;
border-radius: 5px;
}
.button{
min-width:15%;
max-width:40%;
margin:auto;
text-decoration: none;
text-align: center;
display:block;
border-radius: 5px;
font-size: 15px;
background-color: #3d83f4;
margin-bottom: 10px;
}
.button > p {
padding: 5px;
}
.oosButton > p {
padding: 5px;
}
.oosButton{
min-width:15%;
max-width:40%;
margin:auto;
text-decoration: none;
text-align: center;
display:block;
border-radius: 5px;
font-size: 15px;
background-color: #6da5ff;
margin-bottom: 10px;
}
.button:hover {
background-color: #276cdb;
}
.product-box > img{
max-width:60%;
max-height: 300px;
}