blob: fd8c87f4c552c135a4cca1d309d5c73e27dbc3f3 (
plain)
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
|
{{ define "index" }}
<html>
<head>
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
<title>grilist</title>
<style>
body {
height: 100%;
overflow: hidden;
}
.benis {
height: 100%;
width: 100%;
display: table;
}
.uguu {
height: 100%;
vertical-align: middle;
display: table-cell;
}
h1 {
font-family: 'Roboto', sans-serif;
font-size: 88px;
width: 100%;
text-align: center;
}
h1 > small {
font-size: 33%;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
</head>
<body>
<div class="benis">
<div class="uguu">
<h1>grilist<br /><small>#tamtam</small></h1>
</div>
</div>
</body>
</html>
{{ end }}
|