-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstore.css
86 lines (68 loc) · 1.14 KB
/
store.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
.productile {
display: inline-block;
padding: 15px;
margin: 15px;
vertical-align: middle;
flex-flow: row nowrap;
justify-content: space-between;
width: min-content;
cursor: pointer;
}
.productile:hover {
margin: 0px;
padding: 30px;
}
.productile img {
width: 128px;
}
.productile:hover img {
width: 192px;
}
.productile p {
text-align: center;
word-break: break-all;
}
.productile p.name,
.productile div a,
.shopitem div,
.shopitem a {
color: rgba(256, 246, 176, 0.95);
}
.productile p.price {
color: #5465ff;
}
.catalog {
margin: 25px;
padding-left: 47px;
padding-right: 47px;
}
.buybutt:hover,
.shopbutt:hover {
background-color: rgba(14, 237, 241, 0.5);
}
.minus:hover {
background-color: rgba(241, 37, 0, 0.5);
}
.buybutt:active,
.shopbutt:active {
transition-duration: 0s;
transition-delay: 0s;
background-color: #0391ffaa;
}
.shopbutt {
display: inline-block;
}
.shopitem {
display: block;
border-width: 1px;
padding: 2px;
cursor: pointer;
}
.shopitem a {
font-size: 18px;
}
.shopitem .minus:active {
transition-duration: 0s;
transition-delay: 0s;
background-color: #ff0004;
}