-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
120 lines (103 loc) · 3 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>BioChatter Landing Page</title>
<style>
body,
html {
margin: 0;
padding: 0;
height: 100%;
}
.container {
display: flex;
height: 100vh;
justify-content: center;
}
.redirect-option {
flex: 1;
position: relative;
background-size: cover;
background-position: center;
overflow: hidden;
border: none;
}
.redirect-option a {
display: block;
width: 100%;
height: 100%;
}
.redirect-option::after {
content: "";
pointer-events: none;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-size: cover;
background-position: center;
transition: opacity 0.5s;
opacity: 0;
}
.redirect-option.light {
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)), url('light-hover.jpg');
}
.redirect-option.light::after {
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)), url('light.jpg');
}
.redirect-option.next {
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)), url('next-hover.jpg');
}
.redirect-option.next::after {
background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1)), url('next.jpg');
}
.redirect-option.light:hover::after {
opacity: 1;
}
.redirect-option.next:hover::after {
opacity: 1;
}
.redirect-option::before {
z-index: 3;
position: absolute;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
color: rgb(172, 172, 172);
font-family: Arial, Helvetica, sans-serif;
font-weight: 700;
font-size: 5em;
text-align: center;
opacity: 1;
transition: opacity 0.5s;
mix-blend-mode: normal;
text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.8);
}
.redirect-option:hover::before {
color: white;
mix-blend-mode: normal;
opacity: 1;
}
.redirect-option.light::before {
content: "BioChatter Light";
pointer-events: none;
}
.redirect-option.next::before {
content: "BioChatter Next";
pointer-events: none;
}
</style>
</head>
<body>
<div class="container">
<div class="redirect-option light">
<a href="https://light.biochatter.org"></a>
</div>
<div class="redirect-option next">
<a href="https://next.biochatter.org"></a>
</div>
</div>
</body>
</html>