-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcatalog.css
113 lines (92 loc) · 1.72 KB
/
catalog.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
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
* {
margin: 0px;
padding: 0px;
text-decoration: none;
}
.productsContainer {
display: flex;
flex-wrap: wrap;
width: 780px;
height: 700px;
margin: auto;
padding-top: 85px;
padding-bottom: 60px;
padding-left: 40px;
padding-right: 40px;
}
.card {
display: flex;
flex-direction: column;
width: 180px;
height: 290px;
padding: 10px;
margin: 15px;
background-color: white;
border-right: 1px solid rgba(102, 0, 102, 0.2);
}
.card:hover {
box-shadow: 2px 2px 2px 2px rgba(102, 0, 102, 0.8);
}
.gameCoverContainer {
display: flex;
justify-content: center;
cursor: pointer;
}
.gameCover {
width: 120px;
height: 140px;
filter: drop-shadow(5px 5px 5px rgba(102, 0, 102, 0.8));
padding: 0px;
margin-bottom: 15px;
}
.detailLink:hover {
background-color: rgba(102, 0, 102, 0);
filter: drop-shadow(5px 5px 5px rgba(102, 0, 102, 0.8));
padding: 0px;
}
.cardDetails {
display: flex;
flex-direction: column;
justify-content: left;
}
.price {
color: black;
margin-top: 5px;
margin-bottom: 5px;
}
.buttons {
display: flex;
justify-content: right;
}
button {
color: white;
background-color: rgb(102, 0, 102);
padding: 4px;
margin-top: 5px;
border-radius: 5px;
cursor: pointer;
}
button:hover {
color: rgb(102, 0, 102);
background-color: white;
}
/***********RESPONSIVE**************/
@media (max-width: 952px) {
.productsContainer {
display: flex;
width: 404px;
height: 700px;
margin: auto;
padding-top: 80px;
padding-bottom: 400px;
}
.card {
display: flex;
flex-direction: column;
width: 150px;
height: 290px;
}
h4 {
font-size: 15px;
}
}