blob: 048a6af4e11e9348667ba93a4c2c2d0240bf3971 (
plain)
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
|
#snackbar {
visibility: hidden;
min-width: 250px;
background-color: rgb(231, 81, 81);
color: #fff;
text-align: center;
border-radius: 2px;
padding: 16px;
position: fixed;
z-index: 1;
top: 30px;
right:30px;
}
#snackbar.show {
visibility: visible;
-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
animation: fadein 0.5s, fadeout 0.5s 2.5s;
}
@-webkit-keyframes fadein {
from {opacity: 0;}
to { opacity: 1;}
}
@keyframes fadein {
from { opacity: 0;}
to { opacity: 1;}
}
@-webkit-keyframes fadeout {
from {opacity: 1;}
to {opacity: 0;}
}
@keyframes fadeout {
from {opacity: 1;}
to {opacity: 0;}
}
.middle {
margin: 0 auto;
width: 50%;
justify-content: center;
justify-items: center;
align-content: center;
align-items: center;
}
#signout {
position: absolute;
top: 25px;
right: 25px;
}
#cart {
position: absolute;
top: 25px;
right: 105px;
}
.singleProduct {
width: 250px;
border: solid 1px #333;
padding: 20px;
border-radius: 5px;
margin: 10px;
display: inline-block;
}
.productImage {
width: 210px;
height: 210px;
background-repeat: no-repeat;
background-size: cover;
background-position: center;
}
.productTitle {
display: inline-block;
width: 250px;
white-space: nowrap;
overflow: hidden !important;
text-overflow: ellipsis;
margin-bottom: -10px;
}
.productDetail {
display: grid;
grid-template-columns: 50% auto;
padding: 50px 0px;
}
.picture {
width: 100%;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
|