mirror of
https://github.com/openziti/zrok.git
synced 2025-06-26 12:42:18 +02:00
test endpoint ui tweaks
This commit is contained in:
parent
ac7ec589f6
commit
e3bfa18152
@ -16,11 +16,18 @@
|
|||||||
-webkit-font-smoothing: antialiased;
|
-webkit-font-smoothing: antialiased;
|
||||||
-moz-osx-font-smoothing: grayscale;
|
-moz-osx-font-smoothing: grayscale;
|
||||||
}
|
}
|
||||||
|
|
||||||
h1, h2, h3, h4, h5, h6 {
|
h1, h2, h3, h4, h5, h6 {
|
||||||
font-family: 'Russo One', sans-serif;
|
font-family: 'Russo One', sans-serif;
|
||||||
}
|
}
|
||||||
|
table {
|
||||||
|
table-layout: fixed;
|
||||||
|
}
|
||||||
|
td {
|
||||||
|
width: 80%;
|
||||||
|
}
|
||||||
|
td:first-child {
|
||||||
|
width: 20%;
|
||||||
|
}
|
||||||
#banner {
|
#banner {
|
||||||
background-color: #3b2693;
|
background-color: #3b2693;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
@ -32,17 +39,14 @@
|
|||||||
height: 600px;
|
height: 600px;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#banner h1 {
|
#banner h1 {
|
||||||
font-size: 64pt;
|
font-size: 64pt;
|
||||||
}
|
}
|
||||||
|
|
||||||
#container {
|
#container {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
#info {
|
#info {
|
||||||
width: 920px;
|
width: 920px;
|
||||||
}
|
}
|
||||||
@ -379,18 +383,18 @@
|
|||||||
<div id="info">
|
<div id="info">
|
||||||
<h2>{{ .Now }}</h2>
|
<h2>{{ .Now }}</h2>
|
||||||
|
|
||||||
<h3>Local:</h3>
|
<h3>This Endpoint:</h3>
|
||||||
<table>
|
<table>
|
||||||
<tr><td>Host Header</td><td>{{ .Host }}</td></tr>
|
<tr><td class="td-key">Host Header</td><td>{{ .Host }}</td></tr>
|
||||||
<tr><td>Remote Address</td><td>{{ .Remote }}</td></tr>
|
<tr><td class="td-key">Remote Address</td><td>{{ .Remote }}</td></tr>
|
||||||
<tr><td>Local IP Addresses</td><td>{{ .Ips }}</td></tr>
|
<tr><td class="td-key">Local IP Addresses</td><td>{{ .Ips }}</td></tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<h3>Headers:</h3>
|
<h3>Extended Headers:</h3>
|
||||||
<table>
|
<table>
|
||||||
{{ range $header, $value := .Headers }}
|
{{ range $header, $value := .Headers }}
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{ $header }}</td>
|
<td class="td-key">{{ $header }}</td>
|
||||||
<td>
|
<td>
|
||||||
{{ range $v := $value }}
|
{{ range $v := $value }}
|
||||||
{{ $v }}
|
{{ $v }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user