-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathstyles.module.css
More file actions
39 lines (33 loc) · 814 Bytes
/
styles.module.css
File metadata and controls
39 lines (33 loc) · 814 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
.cardContainer {
--ifm-link-color: var(--ifm-color-emphasis-800);
--ifm-link-hover-color: var(--ifm-color-emphasis-700);
--ifm-link-hover-decoration: none;
box-shadow: 0 1.5px 3px 0 rgb(0 0 0 / 15%);
border: 1px solid var(--ifm-color-emphasis-200);
transition: all var(--ifm-transition-fast) ease;
transition-property: border, box-shadow;
}
.icon {
font-size: 1.5rem;
margin-right: 0.5rem;
line-height: 1.5rem;
vertical-align: middle;
display: inline-flex;
align-items: center;
}
.cardContainer:hover {
border-color: var(--ifm-color-primary);
box-shadow: 0 3px 6px 0 rgb(0 0 0 / 20%);
}
.cardContainer *:last-child {
margin-bottom: 0;
}
.cardTitle {
font-size: 1.2rem;
display: flex;
align-items: center;
flex-wrap: nowrap;
}
.cardDescription {
font-size: 0.8rem;
}