-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLanding.html
More file actions
113 lines (102 loc) · 4.15 KB
/
Landing.html
File metadata and controls
113 lines (102 loc) · 4.15 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
101
102
103
104
105
106
107
108
109
110
111
112
113
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="mtflogo.gif" />
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js" integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM" crossorigin="anonymous"></script>
<title>Drug Prevalence</title>
<style>
*,
*:after,
*:before {
box-sizing: border-box;
}
body,
html {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-weight: 300;
font-size: 16px;
background: #f2f2f2;
color: #2D3737;
display: flex;
align-items: center;
justify-content: center;
min-height: 100%;
}
.protected {
background: #fff;
-webkit-box-shadow: 0 2px 3px 0 rgba(0,0,0,0.1);
box-shadow: 0 2px 3px 0 rgba(0,0,0,0.1);
border-radius: 3px;
min-width: 500px;
}
.protected__content {
padding: 24px 28px;
}
.protected__content__heading {
font-size: 16px;
font-weight: 500;
margin: 0 0 12px;
line-height: 1;
}
.protected__alert {
display: none;
border-bottom: 1px solid transparent;
border-radius: 3px 3px 0 0;
padding: 12px 14px;
color: #a94442;
background-color: #f2dede;
border-color: #ebccd1;
}
.protected__content__input {
display: block;
border: solid 1px #ccc;
padding: 12px 14px;
-webkit-box-shadow: 0 2px 3px 0 rgba(0,0,0,0.1);
box-shadow: 0 2px 3px 0 rgba(0,0,0,0.1);
font-size: 16px;
width: 100%;
border-radius: 3px;
margin-bottom: 12px;
}
.protected__content__input:focus {
outline: none;
border-color: #228843;
}
.protected__content__btn {
background-color: #228843;
border-radius: 3px;
cursor: pointer;
border: none;
color: #fff;
padding: 12px 14px;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
font-weight: 500;
font-size: 16px;
}
.protected__content__btn:hover {
background-color: #1C6D36;
}
</style>
</head>
<body>
<div class="protected">
<div class="protected__content">
<h1 class="protected__content__heading">Welcome to the Monitoring the Future Dashboard</h1>
<p style="font-weight: 350;">Introduction and/or instructions here
<br>
<br>
</p>
<select onchange="location = this.value" class="form-select" aria-label="Default select example">
<option disabled selected>Please Select Drug</option>
<option value="https://mtftablesandfigures.com/ab46a88f5d5555fa2e448bc6a99f73e773bad209/index.html#drug=%22%22">Alcohol</option>
<option value="2">Two</option>
<option value="3">Three</option>
</select>
</div>
</div>
</body>
</html>