-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
124 lines (122 loc) · 3.08 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!doctype html>
<html lang="nl">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>Tumasik</title>
<meta name="description" content="">
<meta name="author" content="Christophe Vanhoutte">
<link rel="canonical" href="https://tumasik.be" />
<link rel="icon" type="image/png" href="/favicon.png" />
<meta name="theme-color" content="#404040">
<style>
*{
margin:0;
}
html{
height:100%;
}
h1{
text-align:center;
cursor: default;
}
h2{
text-align:center;
cursor: default;
color:#000;
font-style:italic;
}
body{
overflow-y:scroll;
font-family: sans-serif;
-webkit-font-smoothing: antialiased;
text-align: center;
height:100%;
background-color: #e0e0e0;
color:#fff;
}
img.cntr{
position: absolute;
max-width: 80%;
top: 10%;
left: 10%;
border-radius: 3px;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
img.cntr:empty{
top: 40%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-moz-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
-o-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
@media screen and (orientation: portrait) {
img.cntr {
max-width: 90%;
}
}
@media screen and (orientation: landscape) {
img.cntr {
max-height: 90%;
}
}
div#wrapper{
min-height:100%;
height:auto !important;
height:100%;
margin:0 auto -50px;
}
div#push, footer{
height:50px;
font-size:smaller;
}
footer a, footer a:visited{
color:#fff;
margin: 1em .2em;
text-decoration: none;
border-bottom: 1px #194D33 solid;
transition: all ease .2s;
line-height: 1.5em;
}
footer a:hover{
border-bottom: 1px #194D33 solid;
}
::selection {
color: #fff;
background: #404040;
}
#tumasikBrand a {
text-transform: uppercase;
text-decoration: none;
border-bottom: none;
color: #000;
}
#tumasikBrand {
margin-left: .5em;
display: inline-block;
}
footer, footer a, footer a:visited {
color: #000;
</style>
</head>
<body itemscope= itemtype="http://schema.org/WebPage">
<div id="wrapper">
<div id="content">
<h1><img title="Tumasik" alt="Tumasik" src="/Tumasik.svg" class="cntr" draggable="false" width="500" height="344" /></h1>
<br>
<h2>Management & Consultancy Services</h2>
</div>
<div id="push"></div>
</div>
<footer itemscope itemtype="http://schema.org/WPFooter">
<a href="/about" title="About">About</a> | <a href="/contact" title="About">Contact</a> |<a href="/maildisclaimer" title="E-mail disclaimer">Maildisclaimer</a> | <a href="/t&c" title="Terms and conditions">Algemene voorwaarden</a> | <a href="/privacy" title="Privacy Policy">Privacy</a> | <a href="/cookies" title="Cookies">Cookies</a> <span id="tumasikBrand">© <span itemprop="copyrightYear"><script>document.write(new Date().getFullYear())</script></span> <a itemprop="url" href="https://tumasik.be" title="Tumasik"><span itemprop="name">Tumasik</span></a></span>
</footer>
</body>
</html>