-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmember.css
64 lines (54 loc) · 1017 Bytes
/
member.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
.card-container {
display: flex;
justify-content: center;
flex-wrap: wrap;
margin-top: 100px;
align-items: center;
}
.card {
width: 400px;
background-color: black;
border-radius: 20px;
overflow: hidden;
box-shadow: 3px 2px 4px rgba(0, 0, 0, 0.2);
margin: 20px;
transition: all .3s ease;
border: solid 1px white;
}
.card:hover {
transform: scale(1.1);
}
.card img {
width: 100%;
height: auto;
}
.card-content {
padding: 16px;
}
.card-content h3 {
font-size: 28px;
margin-bottom: 8px;
color: white;
}
.card-content p {
color: #666;
font-size: 15px;
line-height: 1.3;
}
.card-content .btn {
display: inline-block;
padding: 8px 16px;
background-color: #6f49c0;
text-decoration: none;
border-radius: 10px;
margin-top: 16px;
color: #fff;
transition: all .3s ease-in-out;
}
.btn:hover {
transform: scale3d(12);
}
.btn:active {
transform: scale(0.8);
background-color: #6f49c0;
}