forked from bedis/colors_app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (65 loc) · 1.59 KB
/
index.html
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
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>$background_color</title>
<style>
*,
html {
margin: 0;
padding: 0;
border: 0;
}
html {
width: 100%;
height: 100%;
}
body {
width: 100%;
height: 100%;
position: relative;
background-color: $background_color;
font-family: 'Droid Sans Mono', 'monospace', monospace, 'Droid Sans Fallback';
}
td:first-of-type {
white-space: nowrap;
}
.highlight {
color: #7389ff;
font-size: 2em;
}
.center {
width: 100%;
height: 50%;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: $font_color;
font-family: "Trebuchet MS", Helvetica, sans-serif;
text-align: center;
}
</style>
</head>
<body>
<table id="source" cellpadding="10">
<tr>
<td colspan=2>
<h1>Hello Again!</h1>
</td</tr> <tr>
<td colspan=2> </td</tr> <tr>
<td>Coloring</td>
<td>$background_color app</td>
</tr>
<tr>
<td>Hostname:</td>
<td>$hostname</td>
</tr>
<tr>
<td>Font color</td>
<td>$font_color</td>
</tr>
$headers
</table>
</body>
</html>