-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (71 loc) · 1.73 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
---
page_title: Fishoak - Bay Area Fishing
layout: main
---
<style>
.title {
margin-top: 0px;
color: white;
font-family: 'Roboto Condensed', sans-serif;
font-size: 32px;
position: relative;
}
.fishoak {
font-family: 'Lobster', cursive;
}
.title .crop {
width: 100%;
max-height: 100vh;
overflow: hidden;
}
.title img {
width: 100%;
height: 100vh;
object-fit: cover;
-webkit-filter: grayscale;
-webkit-filter: brightness(80%);
}
.title h1 {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
text-align: center;
margin: 0px;
-webkit-filter: drop-shadow(2px 2px #333);
filter: drop-shadow(2px 2px #333);
}
.title .enter {
position: absolute;
top: 90%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.title .enter > a {
margin: 0px;
padding-left: 20px;
padding-right: 20px;
padding-top: 10px;
padding-bottom: 10px;
border-radius: 10px;
background-color: red;
transition-duration: 0.4s;
}
.title .enter > a:hover {
/* background-color: white;
color: #555555; */
background-color: #e87c74;
}
</style>
<div class="title">
<div class="crop">
<img src="/assets/images/shark.webp"/>
</div>
<h1><span class="fishoak">Fishoak</span> - Fishing/Hiking Adventures</h1>
<div class="enter">
<a href="/dir" class="invis">SEE SPOTS</a>
<a href="/reports" class="invis">SEE REPORTS</a>
</div>
</div>