-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.module.css
More file actions
99 lines (81 loc) · 1.39 KB
/
Copy pathstyles.module.css
File metadata and controls
99 lines (81 loc) · 1.39 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
.overview {
padding: 2rem 0;
}
.introText {
max-width: 700px;
margin: 0 auto 1rem;
}
.legend {
display: flex;
flex-wrap: wrap;
gap: 1.5rem;
justify-content: center;
margin-bottom: 2rem;
color: var(--ifm-color-emphasis-700);
}
.legendItem {
display: flex;
align-items: center;
gap: 0.4rem;
}
.dot {
width: 12px;
height: 12px;
border-radius: 50%;
display: inline-block;
flex-shrink: 0;
}
.dotGreen {
background-color: var(--rating-green);
}
.dotYellow {
background-color: var(--rating-yellow);
}
.dotRed {
background-color: var(--rating-red);
}
.dotGrey {
background-color: var(--rating-grey);
}
.standardCard {
border: 1px solid var(--ifm-color-emphasis-200);
border-left: 4px solid var(--rating-grey);
border-radius: 6px;
padding: 1.25rem;
height: 100%;
display: flex;
flex-direction: column;
}
.standardCardGreen {
border-left-color: var(--rating-green);
}
.standardCardYellow {
border-left-color: var(--rating-yellow);
}
.standardCardRed {
border-left-color: var(--rating-red);
}
.standardCardPending {
opacity: 0.6;
border-left-style: dashed;
}
.cardHeader {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 0.5rem;
}
.cardHeader h3 {
margin: 0;
}
.verdict {
font-weight: 600;
margin-bottom: 0.5rem;
}
.description {
color: var(--ifm-color-emphasis-700);
flex: 1;
}
.detailsLink {
margin-top: 0.75rem;
}