forked from ipfs/public-gateway-checker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
92 lines (79 loc) · 1.38 KB
/
styles.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
82
83
84
85
86
87
88
89
90
91
92
body, html {
box-sizing: border-box;
text-align: center;
}
div.Stats {
display: flex;
justify-content: flex-start;
align-items: center;
margin: 1em auto;
width: 95%;
max-width: 1024px;
}
div.Stats div.Totals,
div.Stats div.Gateways {
border-radius: 9999px;
color: white;
font-weight: bold;
padding: 0.5em 1em;
margin: 0 1em 0 0;
font-family: Consolas, monaco, monospace;
}
div.Stats div.Gateways {
background-color: #0b3a53;
}
div.Stats div.Totals {
background-color: #0cb892;
}
div.Results {
display: flex;
flex-direction: column;
justify-content: center;
margin: 0 auto;
width: 100%;
max-width: 1024px;
}
div.Node {
display: flex;
justify-content: space-evenly;
align-items: center;
border-bottom: 1px solid #edf0f4;
padding: 0.5em 1em;
}
div.Node:hover {
background-color: #edf0f4;
}
div.Node div.Link {
width: 100%;
text-align: left;
padding-left: 1em;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
div.Node a {
text-decoration: none;
color: #357edd;
white-space: nowrap;
}
div.Node div.Status,
div.Node div.Cors,
div.Node div.Origin {
width: 5em;
text-align: center;
margin: 0 0.5em;
user-select: none;
}
div.Node div.Flag {
width: 2em;
height: 1em;
background-repeat: no-repeat;
background-size: contain;
background-position: center;
}
div.Node div.Took {
min-width: 5em;
text-align: right;
font-size: 80%;
font-style: italic;
}