-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (77 loc) · 2.38 KB
/
Copy pathindex.html
File metadata and controls
90 lines (77 loc) · 2.38 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
<!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' type='image/png' href='src/site/favicon.png'>
<title>
Daily Nexus AS Senate Bill Tracker
</title>
<style>
html {
font-family: Baskerville, Baskerville Old Face, Hoefler Text, Garamond, Times New Roman, serif;
}
body {
width: 100%;
display: flex;
justify-content: center;
margin: 0;
}
article {
padding: 0 20px;
/* As it will be on the website */
}
main {
width: 700px;
display: flex;
flex-direction: column;
align-items: flex-start;
}
@media (max-width: 700px) {
article {
width: 100%;
}
main {
width: 100%;
}
}
main>div {
align-self: center;
}
hr {
border: none;
border-top: 2px solid #d3d3d3;
width: 100%;
}
a,
a:hover,
a:link {
text-decoration: none;
color: black;
margin: 5px 0;
}
</style>
<script defer src="dist/test-bundle.js"></script></head>
<body>
<article>
<main>
<h1>
Daily Nexus AS Senate Bill Tracker
</h1>
<!--
ADD PLOTS HERE:
-->
<h1>Most Recent Bills</h1>
<div id="labby-as-bill-tracker-slider"></div>
<h1>Senator Activity</h1>
<div id="labby-as-bill-tracker-people-table"></div>
<h1>All Bills</h1>
<div id="labby-as-bill-tracker-bill-table"></div>
<div id="labby-as-bill-tracker-bill-history"></div>
</main>
<hr />
<a href="https://dailynexus.com/category/labyrinth/">The Daily Nexus Labyrinth</a>
</article>
</body>
</html>