-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcards.css
More file actions
63 lines (55 loc) · 832 Bytes
/
cards.css
File metadata and controls
63 lines (55 loc) · 832 Bytes
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
*
{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial;
}
body
{
background-color: white;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container
{
display: flex;
gap: 15px;
}
.card
{
background: white;
box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.3);
border-radius: 8px;
text-align: center;
width: 250px;
overflow: hidden;
transition: transform 0.5s ease;
}
.card:hover
{
transform: scale(1.02);
cursor: pointer;
}
.card img
{
height: 140px;
width: 100%;
object-fit: cover;
}
.content
{
padding: 9px;
}
.content h4
{
font-weight: bold;
font-size: 15px;
}
.content p
{
font-size: 11px;
color: grey;
}