-
Notifications
You must be signed in to change notification settings - Fork 10
/
resources.css
76 lines (59 loc) · 1.08 KB
/
resources.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
65
66
67
68
69
70
71
72
73
74
75
76
/*
* CSS ONLY FOR THE RESOURCES PAGE
* */
/* ===============
* GLOSSARY
* =============== */
table caption {
text-align: inherit;
}
table th {
color: var(--bg);
background-color: var(--fg);
}
.glossary-list {
border: none;
border-collapse: collapse;
border-spacing: 0;
}
.glossary-list tr td,
.glossary-list tr th {
padding-bottom: 1em;
padding: 0.5em 0.5em;
}
.glossary-list tr {
vertical-align: top;
}
.glossary-list tr:nth-child(odd) {
background: var(--bg2);
}
/* MOBILE STYLES */
@media only screen and (max-width: 900px) {
.glossary-list tr td {
display: block;
}
.glossary-list thead {
display: none;
}
}
/* ==== END OF GLOSSARY ==== */
/* ===============
* ORG LOGOS
* =============== */
.wrapper-logo-grid {
vertical-align: top;
}
.grid-one-logo {
padding: 1em;
text-align: center;
width: 250px;
display: inline-block;
vertical-align: top;
}
.grid-one-logo img {
max-width: 200px;
}
.grid-one-logo p {
font-size: 1em;
}
/* ==== END OF ORG LOGOS ==== */