-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
49 lines (45 loc) · 850 Bytes
/
styles.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
.container {
max-width: 1600px;
margin: 0 auto;
/* outline: 1px solid tomato; */
padding-top: 10px;
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 10px;
}
.card {
min-width: 320px;
height: 320px;
/* outline: 2px solid blue; */
box-shadow: 2px 2px 2px 2px grey;
padding-top: 5px;
background-color: white;
cursor: pointer;
}
.card.active-card {
transform: perspective(520px) rotateX(10deg);
}
.color {
max-width: 300px;
height: 240px;
margin: 0 auto;
/* outline: 1px solid green; */
padding-left: 10px;
margin-bottom: 5px;
}
.meta-card {
font-size: 16px;
font-weight: bold;
padding-left: 10px;
max-width: 300px;
height: auto;
/* outline: 1px solid gainsboro; */
margin: 0 auto;
background-color: white;
}
.hex {
margin: 0px;
padding-top: 10px;
padding-bottom: 5px;
}