-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
93 lines (76 loc) · 1.6 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
<!DOCTYPE html>
<html>
<head>
<title>Doxatech</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400&display=swap" rel="stylesheet">
</head>
<body>
<div class="content">
<h1>Technology that matters</h1>
<img class="logo" src="logo.png" />
</div>
<footer>
<p>Association Doxatech - 2019 - <a mailto="[email protected]">[email protected]</a></p>
</footer>
<div class="overlay"></div>
<style>
* {
padding: 0;
margin: 0;
}
body,
html {
width: 100%;
height: 100%;
}
body {
background-image: url("background.jpg");
background-size: cover;
background-position: 50% 50%;
font-family: "Open Sans", sans-serif;
color: white;
position: relative;
}
div.content {
position: absolute;
top: 45%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
h1 {
font-weight: 400;
}
img.logo {
width: 180px;
max-width: 100%;
margin-top: 80px;
}
footer {
position: absolute;
bottom: 0;
left: 0;
right: 0;
/* background-color: rgba(255, 26, 39, 0.2); */
font-size: 13px;
text-align: center;
padding: 10px;
font-weight: 300;
}
footer p {
display: inline-block;
color: rgb(245, 255, 182);
padding: -3px 7px 5px 7px;
}
div.overlay {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: rgba(255, 26, 39, 0.2);
z-index: -1;
}
</style>
</body>
</html>