-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (98 loc) · 2.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Documentation Overview</title>
<style>
body {
font-family: Arial, sans-serif;
background: #2a2a2a; /* Slightly lighter background */
color: #e0e0e0;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
text-align: center;
overflow: hidden;
}
/* Adjusted moving gradient background with softer purple and orange tones */
body::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(45deg, #4e4949, #74468d, #4e4949, #b25c3d, #4e4949, #5c4b80, #4e4949, #b25c3d);
background-size: 400% 400%;
animation: gradientAnimation 90s ease infinite; /* Slower animation */
z-index: -1;
}
@keyframes gradientAnimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
header {
background: #5a5a5a;
padding: 20px;
width: 100%;
color: #ffffff;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
h1 {
margin: 0;
font-size: 2em;
}
.content {
padding: 20px;
background: #5a5a5a; /* Slightly brighter content box */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}
p {
font-size: 1.1em;
margin-bottom: 20px;
color: #d0d0d0;
}
.btn {
background: #a29792;
color: #e0e0e0;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background 0.3s ease;
}
.btn:hover {
background: #357abd;
}
footer {
margin-top: 20px;
font-size: 0.9em;
color: #bfbfbf;
}
</style>
</head>
<body>
<header>
<h1>Clinical Data Correlations Overview</h1>
</header>
<div class="content">
<p>Welcome to the correlation visualization! Click the link below to explore the details of the analysis.</p>
<a class="btn" href="literatureresearch/potentialhitsofinterest.html">Explore Potential Hits of Interest</a>
</div>
<footer>
<p>Johannes Zieres</p>
</footer>
</body>
</html>