-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (66 loc) · 1.87 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
<!-- This is a coming soon page -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="assets/icons/Logo.png" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Little Creek</title>
<style>
@font-face {
font-family: 'Kg';
src: url(./assets/fonts/KGColdCoffee.ttf);
}
*{
margin: auto;
}
.main{
background: linear-gradient(180deg, #92A6F4 -42.21%, #A9A7E6 -22.35%, #D7A8C8 22.82%, #F4A9B6 57.56%, #FFA9AF 77.42%);
padding: auto;
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
overflow: hidden;
}
.main h1{
font-family: kg;
padding: 0 0 2rem 0;
font-size: 2.5rem;
text-align: center;
color: #000000d5;
}
.main .logo{
height: auto;
width: 10rem;
padding: 2rem 0 1rem 0;
}
.main .background{
width: 100%;
}
a{
text-decoration: none;
font-weight: 700;
color: #204977;
transition: .2s ease;
font-family: 'Kg';
}
a:hover{
transform: scale(1.2);
}
</style>
</head>
<body>
<div class="main">
<img src="./assets/images/Object.png" alt="" class="logo">
<h1>
Under Maintainance
</h1>
<a href="./index-main.html">Go to site <span> → </span></a>
<img src="./assets/images/header_image.svg" alt="" class="background">
</div>
<script>
document.oncontextmenu = document.body.oncontextmenu = function() {return false;}
</script>
</body>
</html>