-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
100 lines (100 loc) · 2.75 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
<!DOCTYPE html>
<!-- saved from url=(0056)file:///C:/Users/joelb/source/repos/portfolio/index.html -->
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<style>
* {
margin: 0;
padding: 0;
border: 0;
outline: 0;
font-size: 100%;
vertical-align: baseline;
background: transparent;
}
body {
color: antiquewhite;
text-align: center;
}
@font-face {
font-family: 'sublima-light';
src: url('fonts/Sublima-Light.otf') format('opentype');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'sublima-extrabold';
src: url('fonts/Sublima-ExtraBold.otf') format('opentype');
font-weight: bold;
font-style: normal;
}
img {
align-self: center;
}
h2 {
font-family: 'sublima-extrabold';
font-size: 60px;
}
pre {
font-family: 'sublima-light';
font-size: 30px;
}
p {
font-family: 'sublima-light';
font-size: 30px;
}
.pbold {
font-weight: bold;
}
.bottom {
position: fixed;
bottom: 0;
margin-left: 15%;
margin-right: 15%;
}
body, html {
height: 100%;
margin: 0;
top: 0
}
.centered {
position: fixed; /* or absolute */
top: 50%;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
}
.container {
position: relative;
}
.centered-container {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.full-screen-container {
position: relative;
}
body {
background: radial-gradient(#000052, #00002A);
background-position: center;
background-size: cover;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale:=1">
</head>
<body>
<div class="centered-container">
<img src="images/construction sign.png" width="200">
<h2>Warte! Ich bin noch nicht bereit!</h2>
</div>
<p class="pbold">Programmieren braucht seine Zeit!</p>
<p class="bottom">Im Moment ist die Website noch in Bearbeitung. Kommen sie bald nochmal wieder!</p>
</body>
</html>