-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
63 lines (63 loc) · 1.26 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
<head>
<link rel="shortcut icon" type="image/png" href="assets/favicon.png"/>
</head>
<style>
h1, h2, h3, h4, h5, h6 {
font-family: "Segoe UI Light";
font-weight: 300;
}
a {
text-decoration: none;
color: #000
}
td, th {
text-align: center;
padding: 10px 30px;
}
.center{
margin: auto;
text-align: center;
}
.content {
max-width: 500px;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
background-color: #efefef;
}
.top{
background-color: #4F9D67;
color: #eee;
padding: 10px;
}
.bottom {
padding: 20px 30px 30px 30px;
}
.qr {
filter: invert(100%);
-webkit-filter: invert(100%);
}
</style>
<body>
<div>
<div class="center content">
<div class="center top">
<h1>Christmas Cards</h1>
</div>
<table class="center bottom">
<tr>
<td>
<a href="http://antonia.elek.hr/christmas-cards/blue-screen-of-death/">
<h1>BSoD</h1>
<img class="qr" src="http://antonia.elek.hr/christmas-cards/blue-screen-of-death/qrcode.png" width="124px">
</a>
</td>
<td>
<a href="http://antonia.elek.hr/christmas-cards/windows-95/">
<h1>Win95</h1>
<img class="qr" src="http://antonia.elek.hr/christmas-cards/windows-95/qrcode.png" width="124px">
</a>
</td>
</tr>
</table>
</div>
</div>
</body>