-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCard.module.css
More file actions
76 lines (66 loc) · 1.3 KB
/
Card.module.css
File metadata and controls
76 lines (66 loc) · 1.3 KB
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
.cardBody {
display: flex;
height: 254px;
width: 384px;
background-color: var(--grey-light);
border-radius: 8px;
overflow: visible;
}
.cardBody img {
width: 44px;
height: 44px;
}
.cardBody h4 {
margin: 8px auto;
color: var(--black-main);
text-align: center;
font-size: 20px;
line-height: 24px;
font-weight: 500;
}
.cardBody h5 {
margin: 16px auto 0 auto;
min-height: 42px;
color: var(--black-main);
text-align: center;
font-size: 14px;
line-height: 20px;
font-weight: 300;
}
.cardBody button {
margin-top: 10px;
height: 40px;
max-width: 156px;
background-color: var(--primary-main);
border-radius: 2px;
color: var(--white-main);
font-size: 16px;
font-weight: 400;
line-height: 24px;
}
.cardBody button:hover {
background-color: var(--secondary-main);
}
.cardContainer {
height: 100%;
width: 100%;
padding: 32px;
display: flex;
flex-direction: column;
align-items: center;
overflow: visible;
}
.buttonGroup {
display: flex;
flex-direction: row;
}
.moreInfo {
line-height: 10px !important;
background-color: var(--grey-light) !important;
color: var(--black-light) !important;
}
.moreInfo:hover,
.moreInfo:focus,
.moreInfo:active {
border: none;
}