-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
81 lines (81 loc) · 1.79 KB
/
index.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
77
78
79
80
81
/* Global ----------------------------------------------------------------- */
:root {
/* https://www.carbondesignsystem.com/guidelines/color/usage Gray 90 */
--ui-background: #161616;
--link-01: #78a9ff;
--text-01: #f4f4f4;
--ui-01: #262626;
--ui-02: #393939;
}
body {
margin: 0;
background-color: var(--ui-background);
color: var(--text-01);
font-family: Helvetica, sans-serif;
}
a {
color: var(--link-01);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Centering -------------------------------------------------------------- */
body {
max-width: 100vw;
display: grid;
place-content: center;
}
body > img, h1 {
text-align: center;
margin-left: auto;
margin-right: auto;
}
/* Logo ------------------------------------------------------------------- */
img.bss-logo {
margin-top: 1rem;
}
/* Table ------------------------------------------------------------------ */
table {
display: block;
white-space: nowrap;
overflow-x: auto;
max-width: 100%;
border-collapse: collapse;
}
/* Header ----------------------------------------------------------------- */
thead {
background-color: var(--ui-02);
}
th {
padding: 1rem 1rem 0.125rem 1rem;
text-align: left;
}
/* Content ---------------------------------------------------------------- */
tbody {
background-color: var(--ui-01);
}
tbody > tr:nth-child(even) {
background-color: var(--ui-02);
}
td {
padding: 0.25rem 1rem;
}
span.ip-address {
display: block;
margin-top: 0.125rem;
font-size: smaller;
}
tbody > tr > :nth-child(2) > div {
display: inline-flex;
align-items: center;
gap: 0.5rem;
}
img.docs {
width: 1rem;
height: 1rem;
fill: var(--text-01);
}
img.docs:hover {
filter: brightness(0.75);
}