-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoledohomepage.php
More file actions
67 lines (65 loc) · 2.07 KB
/
toledohomepage.php
File metadata and controls
67 lines (65 loc) · 2.07 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
<?php
error_reporting(-1);
ini_set('display_errors', 'On');
require '/var/www/repos/includes/db.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap.grid.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<title>Homepage</title>
</head>
<style>
.card{
font-family: "Roboto", "helvetica-neue", Helvetica, Arial, sans-serif;
font-weight: 400;
-webkit-font-smoothing: antialiased;
-webkit-appearance: none;
zoom: 1;
-webkit-font-feature-settings: "kern" 1, "liga" 1;
line-height: 1.5;
background-color: #08c;
color: white;
width: auto;
height: auto;
padding: 10px 20px 20px 20px;
border-radius: 3px;
}
h1{
font-size: 22px;
font-weight: 700;
}
p{font-size: 16px;}
button{
font-size: 22px;
font-weight: 700;
border: 1px solid #fff;
background-color: #fff;
border-radius: 3px;
padding: 0px 5px 0px 5px;
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
}
button:hover{
border: 3px solid #fff;
}
a{color: black;}
a:hover{
color: black;
cursor: pointer;
text-decoration: none;
}
</style>
<body>
<div class="card">
<h1> How to make sense of this page </h1>
<p>
This dashboard contains real-time data on electricity and water consumption for each public school in Toledo, Ohio. Scroll your mouse through the displays below and select different time periods and see how "Flash" the energy squirrel and "Wally" Walleye respond -- their behavior reflects how much resource is being consumed a given point in time relative to what is normally consumed at that time of day.
</p>
<button><a href="https://palmer.buildingos.com/reports/dashboards/c59fde5ec0db11e7aff5525400391da3" target="_top"> Back to home page</a></button>
</div>
</body>
</html>