-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
78 lines (78 loc) · 2.01 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
74
75
76
77
78
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Does Not Compute</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
html, body {
width: 100%;
height: 100%;
background-color: #FFF;
font: 14px Myriad Pro, Arial;
color: #6d6d6d;
}
#nothingSpecial div.Ārā {
width: 100%;
height: 100%;
display: table;
}
#nothingSpecial div.Iekšā {
display: table-cell;
vertical-align: middle;
}
#nothingSpecial div.Saturs {
width: 900px;
margin: auto;
position: relative;
padding: 100px;
left: -5%;
}
.logo {
display: block;
float: left;
border-left: 1px solid #6d6d6d;
outline: none;
position: relative;
}
.logo img {
display: block;
position: absolute;
left: 0;
top: -140px;
border: none;
}
h1 {
float: left;
font-size: 60px;
font-weight: normal;
width: 430px;
padding: 15px 35px 77px 0;
line-height: 48px;
text-align: right;
border-right: 1px solid #6d6d6d;
}
p {
margin: 0 60px;
width: 320px;
clear: both;
}
</style>
</head>
<body id="nothingSpecial">
<div class="Ārā">
<div class="Iekšā">
<div class="Saturs">
<h1>You've just DESTROYED the Internet!</h1>
<span class="logo">
<img id="logo" src="./assets/img/lv.png" alt="Coat of arms of Latvia" width="520" height="430" />
</span>
<p>Don't panic. This is just a static dummy page. Nothing special happened.</p>
</div>
</div>
</div>
</body>
</html>