-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
100 lines (88 loc) · 2.19 KB
/
Copy pathindex.html
File metadata and controls
100 lines (88 loc) · 2.19 KB
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>
<html>
<head>
<meta charset="utf-8">
<title>Forêt</title>
<style>
body {
font-family: Helvetica, Arial, sans-serif;
margin: 0;
font-size: 100%;
}
#main {
width: 100%;
width: 100vw;
height: 100%;
height: 100vh;
overflow-x: hidden;
}
.message {
background-color: #1f2b11;
color: white;
position: absolute;
top: 50%;
left: 50%;
width: 30%;
text-align: center;
padding-bottom: 2em;
/*box-shadow: 7px 4px 4px rgba(0, 0, 0, 0.6);*/
/*-ms-transform: translate(-50%, -50%); /* IE 9 */*/
/*-webkit-transform: translate(-50%, -50%); /* Safari */*/
transform: translate(-50%, -50%);
box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.8) inset;
-ms-transform: translate(-50%, -50%);
-webkit-transform: translate(-50%, -50%);
border: 14px double #a96330;
}
.message h2 {
font-weight: normal;
font-size: 1em;
color: white;
margin-bottom: 2em;
text-transform: uppercase;
letter-spacing: 0.2em;
}
.message a {
color: #365017;
text-decoration: none;
letter-spacing: 0.2em;
font-size: 0.9em;
padding: 10px;
transition: color 1.4s ease;
}
.message a:hover {
color: #556f38;
cursor: pointer;
}
.message .logo {
background-image: url(img/logo.svg);
background-repeat: no-repeat;
background-position: top center;
}
.message .logo h1 {
text-indent: -9999px;
text-indent: -9999px;
height: 12vw;
min-height: 120px;
max-height: 120px;
}
img.bg {
width: 100%;
padding: 0;
object-fit: cover;
object-position: 0% 50%;
margin: 0;
}
</style>
</head>
<body>
<div id="main">
<div class="message">
<div class="logo"><h1>Forêt</h1></div>
<h2>Website coming soon.</h2>
<a href="mailto:contact@foret.design">contact@foret.design</a>
</div>
<img src="img/wall.jpg" alt="" class="bg">
</div>
</body>
</html>