-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (48 loc) · 1.06 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Bamboo</title>
<link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
<style>
body,
html {
height: 100%;
margin: 0;
}
body {
background-image: url('./assets/wellington.jpg');
background-size: cover;
background-repeat: no-repeat;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
width: 70%;
margin-bottom: 50px;
}
.email {
font-family: 'Fira Sans', sans-serif;
font-size: 48px;
font-weight: bold;
text-decoration: none;
transition: opacity 0.3s ease-in-out;
color: #ddd;
text-shadow:
-1px -1px 0 #000,
1px -1px 0 #000,
-1px 1px 0 #000,
1px 1px 0 #000;
}
.email:hover {
opacity: 0.75;
}
</style>
</head>
<body>
<img class="logo" src='./assets/logo.svg' />
<a class="email" href="mailto:[email protected]">get in touch</a>
</body>
</html>