-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_work_in_progress.php
81 lines (70 loc) · 2.18 KB
/
index_work_in_progress.php
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
<!-- Rename this file to index.php to set a temporary work in progress page -->
<html>
<head>
<title>GTK-Gnutella - Work in Progress</title>
<style>
/* Set height to 100% for body and html to enable the background image to cover the whole page: */
body, html {
height: 100%;
margin: 0px 0px 0px 0px;
}
.bgimg {
/* Background image */
background-image: url('images/dian-yu-CzP6Esb87oQ-unsplash.jpg');
/* Full-screen */
height: 100%;
/* Center the background image */
background-position: center;
/* Scale and zoom in the image */
background-size: cover;
/* Add position: relative to enable absolutely positioned elements inside the image (place text) */
position: relative;
/* Add a white text color to all elements inside the .bgimg container */
color: white;
/* Add a font */
font-family: "Courier New", Courier, monospace;
/* Set the font-size to 25 pixels */
font-size: 25px;
}
/* Position text in the top-left corner */
.topleft {
position: absolute;
top: 0;
left: 16px;
}
/* Position text in the bottom-left corner */
.bottomleft {
position: absolute;
bottom: 0;
left: 16px;
}
/* Position text in the middle */
.middle {
position: absolute;
top: 40%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
/* Style the <hr> element */
hr {
margin: auto;
width: 40%;
}
a {text-decoration: none; color: white;}
a:link {color: white;}
a:visited {color: white;}
a:hover {color: red;}
</style>
</head>
<body>
<div class="bgimg">
<div class="middle">
<div><img src="images/gtk-gnutella.png" alt="logo"/></div>
<h1>COMING BACK SOON</h1>
</div>
<div class="bottomleft">
<div style="font-style: italic">... in the meanwhile, download the latest version from <a href="https://sourceforge.net/projects/gtk-gnutella/">SOURCEFORGE!</a> <span style="font-size: smaller">Background picture by <a href="https://unsplash.com/it/@promemouse?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Dian Yu</a> on <a href="https://unsplash.com/it/foto/una-foresta-coperta-di-nebbia-e-nuvole-basse-CzP6Esb87oQ?utm_source=unsplash&utm_medium=referral&utm_content=creditCopyText">Unsplash</a></span> </div>
</div>
</div>
<body>