-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (70 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Thanos Theodosiou | Backend Engineer</title>
<meta name="description" content="I am Thanos Theodosiou. A Backend Engineer with a BSc in Computer Science, that has a passion for solving difficult problems.">
<style>
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@1,800&display=swap');
body, html {
height: 100%;
padding: 0;
margin: 0;
background-color: black;
}
.bgImage{
/* The image used */
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("./resources/img/background.jpg");
filter: blur(8px);
-webkit-filter: blur(8px);
/* Full height */
height: 100%;
width: 100%;
/* Center and scale the image nicely */
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
.content {
font-family: 'Open Sans', sans-serif;
position: fixed;
top: 50%;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -60%);
}
.underConstruction{
font-size: 8rem;
text-align: center;
color: #fff;
margin-bottom: 10px;
}
progress[value] {
-webkit-appearance: none;
appearance: none;
width: 100%;
height: 25px;
}
progress[value]::-webkit-progress-bar {
background-color: rgb(58, 58, 58);
}
progress[value]::-webkit-progress-value {
background-color: #fff;
}
progress[value]::-webkit-progress-value::before {
content: '80%';
position: absolute;
right: 0;
top: 125%;
}
</style>
</head>
<body>
<div class="bgImage"></div>
<div class="content">
<p class="underConstruction">UNDER CONSTRUCTION</p>
<!-- <progress id="file" max="100" value="32">32%</progress> -->
</div>
</body>
</html>