succd: Use grid layout to show all info on a single screen
Use CSS grids to all information on a single screen if possible. There is a breakpoint for smaller screens.
This commit is contained in:
		
							parent
							
								
									102393a689
								
							
						
					
					
						commit
						ecca05a7e3
					
				
					 1 changed files with 20 additions and 19 deletions
				
			
		| 
						 | 
				
			
			@ -5,12 +5,11 @@
 | 
			
		|||
<link rel="shortcut icon" type="image/png" href="/favicon.png">
 | 
			
		||||
<style>
 | 
			
		||||
body {
 | 
			
		||||
    font-size: 14px;
 | 
			
		||||
    font-size: 12px;
 | 
			
		||||
    padding: 2em;
 | 
			
		||||
}
 | 
			
		||||
table {
 | 
			
		||||
    font-size: 40px;
 | 
			
		||||
    margin-top: 1em;
 | 
			
		||||
}
 | 
			
		||||
table.status td {
 | 
			
		||||
    width: 2em;
 | 
			
		||||
| 
						 | 
				
			
			@ -59,19 +58,7 @@ td > span {
 | 
			
		|||
<h1>succd</h1>
 | 
			
		||||
<h2>nothing more permanent than a temporary solution</h2>
 | 
			
		||||
 | 
			
		||||
<p style="margin-top: 2em; clear: both;">
 | 
			
		||||
    <table>
 | 
			
		||||
        <tr>
 | 
			
		||||
            <th rowspan="2">Pirani Gauge</th>
 | 
			
		||||
            <th>Voltage</th>
 | 
			
		||||
            <td id="volts">{{ .Pirani.Volts }}</td>
 | 
			
		||||
        </tr>
 | 
			
		||||
        <tr>
 | 
			
		||||
            <th>Pressure</th>
 | 
			
		||||
            <td id="mbar">{{ .Pirani.Mbar }}</td>
 | 
			
		||||
        </tr>
 | 
			
		||||
    </table>
 | 
			
		||||
 | 
			
		||||
<div style="margin: 2em; clear: both; display: grid; grid-template-columns: repeat(auto-fit, minmax(50em, 1fr)); column-gap: 2em; row-gap: 2em;">
 | 
			
		||||
    <table class="status">
 | 
			
		||||
        <tr>
 | 
			
		||||
            <th>Thresholds</th>
 | 
			
		||||
| 
						 | 
				
			
			@ -96,6 +83,19 @@ td > span {
 | 
			
		|||
        </tr>
 | 
			
		||||
    </table>
 | 
			
		||||
 | 
			
		||||
    <table>
 | 
			
		||||
        <tr>
 | 
			
		||||
            <th rowspan="2">Pirani Gauge</th>
 | 
			
		||||
            <th>Voltage</th>
 | 
			
		||||
            <td id="volts">{{ .Pirani.Volts }}</td>
 | 
			
		||||
        </tr>
 | 
			
		||||
        <tr>
 | 
			
		||||
            <th>Pressure</th>
 | 
			
		||||
            <td id="mbar">{{ .Pirani.Mbar }}</td>
 | 
			
		||||
        </tr>
 | 
			
		||||
    </table>
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    <table>
 | 
			
		||||
        <tr>
 | 
			
		||||
            <th rowspan="3">Control</th>
 | 
			
		||||
| 
						 | 
				
			
			@ -125,10 +125,11 @@ td > span {
 | 
			
		|||
            <td id="load" colspan="1">...</td>
 | 
			
		||||
        </tr>
 | 
			
		||||
    </table>
 | 
			
		||||
</p>
 | 
			
		||||
<p style="margin-top: 2em;">
 | 
			
		||||
    <canvas id="graph" width="1024" height="512" style="max-width: 100%;"></canvas>
 | 
			
		||||
</p>
 | 
			
		||||
 | 
			
		||||
    <p>
 | 
			
		||||
        <canvas id="graph" width="1024" height="512" style="max-width: 100%;"></canvas>
 | 
			
		||||
    </p>
 | 
			
		||||
</div>
 | 
			
		||||
 | 
			
		||||
<p style="font-style: italic; font-size: 12px; margin-top: 5em;">
 | 
			
		||||
    {{ .System.Hostname }} | load: {{ .System.Load }} | <a href="/debug/pprof">pprof</a> | <a href="/metrics">metrics</a> | ws ping: <span id="ping">…</span>
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue