stop the flickering

This commit is contained in:
Michael Quigley 2022-08-30 12:16:55 -04:00
parent 65284d696a
commit 79a176fd1d
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

View File

@ -33,23 +33,29 @@
#banner h1 { #banner h1 {
font-size: 64pt; font-size: 64pt;
} }
#container {
display: flex;
align-items: center;
justify-content: center;
}
#info { #info {
margin-left: 50px; width: 920px;
margin-right: 50px;
} }
</style> </style>
</head> </head>
<body> <body>
<div id="root"> <div id="root">
<div id="banner"> <div id="banner">
<img src="ziggy.svg" width="200"/> <img src="ziggy.svg" width="200" height="343.38"/>
<h1>zrok test endpoint</h1> <h1>zrok test endpoint</h1>
</div> </div>
<div id="info"> <div id="container">
<h2>The Current Now is {{ .Now }}</h2> <div id="info">
<p>The current <code>HOST</code> header: {{ .Host }}</p> <h2>The Current Now is {{ .Now }}</h2>
<p>The remote host making the request: {{ .Remote }}</p> <p>The current 'HOST' header: {{ .Host }}</p>
<p>This host has these IP addresses: {{ .Ips }}</p> <p>The remote host making the request: {{ .Remote }}</p>
<p>This host has these IP addresses: {{ .Ips }}</p>
</div>
</div> </div>
</div> </div>
</body> </body>