-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathlibraries.module.css
More file actions
101 lines (81 loc) · 1.38 KB
/
libraries.module.css
File metadata and controls
101 lines (81 loc) · 1.38 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
100
101
.text {
flex-basis: var(--col8);
& h1,
& h3 {
max-width: 950px;
}
& h3 {
margin-bottom: 0;
}
}
.pushDown {
margin-top: var(--vertical-margin-small);
}
.category {
flex-basis: var(--col2);
font-size: var(--text-xlarge);
text-transform: capitalize;
margin-top: var(--vertical-margin-large);
margin-bottom: 0;
border-right: solid 7px var(--lightgray);
}
.filter {
flex-basis: var(--col6);
}
.list {
flex-basis: var(--col6);
margin-top: var(--vertical-margin-large);
list-style: none;
}
.item {
margin-bottom: var(--vertical-margin-medium);
align-items: baseline;
}
.itemName {
flex-basis: calc(100% / 6 * 1.5);
border-right: solid 3px var(--lightgray);
& h3 {
font-size: var(--text-medium);
margin: 0;
}
& h3:hover {
color: inherit;
}
& h3:focus {
color: inherit;
}
}
.itemDescription {
flex-basis: calc(100% / 6 * 3.5);
margin: 0;
}
.contributionAuthor {
color: var(--processing-blue-mid);
}
@media (--reduced) {
.filter {
flex-basis: var(--col8);
}
.category {
flex-basis: var(--col8);
border: none;
}
.list {
flex-basis: var(--col8);
}
.itemName {
flex-basis: calc(100% / 6 * 2);
}
.itemDescription {
flex-basis: calc(100% / 6 * 4);
}
}
@media (--small) {
.itemName {
border-right: none;
}
.itemName,
.itemDescription {
flex-basis: 100%;
}
}