-
Notifications
You must be signed in to change notification settings - Fork 0
/
q.php
124 lines (104 loc) · 2.2 KB
/
q.php
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
121
122
123
124
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="images/icons/favicon.ico"/>
<link href="https://fonts.googleapis.com/css?family=Advent+Pro|Neucha|Oxygen|Saira+Extra+Condensed|Sedgwick+Ave|Yanone+Kaffeesatz" rel="stylesheet">`
<style>
body {
background-color: #9099A2;
margin: 0px;
font-size: .8em; /* currently ems cause chrome bug misinterpreting rems on body element */
line-height: 1.6;
font-weight: 400;
font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
table {
font-family: 'Oxygen', sans-serif;
font-size: 1em;
padding: 6px;
border-spacing: 0.2rem;
}
td {
background-color: #8D097A0;
}
th {
font-family: 'Yanone Kaffeesatz', sans-serif;
font-size: 1.1em;
text-align: left;
}
a:link {
color: #FFEEEE;
text-decoration: none;
font-weight: bold;
}
a:hover {
color: #FFEEEE;
text-decoration: none;
}
a:visited {
color: #FFEEEE;
text-decoration: none;
}
a:active {
color: #FFEEEE;
text-decoration: none;
}
.container {
position: relative;
width: 100%;
max-width: 100%;
margin: 0 5px;
padding: 0 5px;
box-sizing: border-box;
display: flex;
}
.wrapper {
max-width: 100%;
margin: 40px auto 0 auto;
line-height: 1.65;
padding: 20px 50px;
display: flex;
}
.FirstLast {
flex: 4;
background-color: #829295;
border: 1px solid #777777;
margin: 5;
padding: 3;
}
.LastTen {
flex: 2;
background-color: #829295;
border: 1px solid #777777;
margin: 5;
padding: 3;
}
.Dataz {
flex: 1;
background-color: #829295;
border: 1px solid #777777;
margin: 5;
padding: 3;
}
.Footer {
flex: 4;
background-color: #829295;
border: 1px solid #777777;
margin: 5;
padding:3;
}
</style>
</head>
<title>NerdRadio Stats</title>
<body>
<?php
include_once("functions.php");
?>
<div class="wrapper">
<div class="FirstLast">
Artist Data / Song Data
</div>
</div>
</body>
</html>