-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.scss
86 lines (84 loc) · 1.37 KB
/
main.scss
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
.nav-link:hover{
border-bottom: white solid 2px;
}
h1{
text-align: center;
padding-top: 15px;
}
#product_container{
display: flex;
justify-content: space-around;
flex-wrap: wrap;
margin: 25px;
.card{
margin: 25px;
padding: 15px;
width: 18rem;
img{
height: 40%;
object-fit: cover;
border: solid black 1px;
}
}
}
footer{
bottom: 0;
width: 100%;
p{
padding:40px 0 40px 0;
margin-bottom: 0;
}
}
select {
margin: 10px;
}
#cart_summary{
text-align: center;
table{
tr{
border:solid black 1px;
height:60px
}
.article_col{
width: 50%;
}
.price_col{
width:15%;
}
.delete_col{
width:10%;
}
th .delete_col{
width: 10%;
}
width:90%;
margin: 0 5% 30px 5%;
border-collapse : collapse;
caption-side:top;
border:black solid 1px;
img{
height:30px;
cursor: pointer;
}
}
btn{
margin:20px;
}
}
form{
padding: 20px;
margin:20px;
}
#confirm{
text-align:center;
span{
font-weight: bold;
}
a{
display:inline-block;
padding:0;
}
p{
margin:20px;
}
}