-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.html
executable file
·139 lines (116 loc) · 3.07 KB
/
header.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html xmlns='http://www.w3.org/1999/xhtml'>
<head>
<title><?php echo("Demo PHP page manager"); ?></title>
<meta http-equiv='Content-Type' content='text/html;charset=utf-8'>
<style type="text/css">
/******************************************************************************/
/* Pagination */
.pagination {
font:18px Arial, Helvetica, sans-serif;
margin:2px 0 0 2px;
}
.pagination a {
background:#fff;
border:1px solid #0033cc;
color:#0033cc;
margin:2px;
padding:.2em .4em;
text-decoration:none
}
.pagination a:hover {
background:#fff;
border:1px solid #bd88fe;
color:#bd88fe
}
.pagination span.inactive {
background:#fff;
border:1px solid #b3b3ff;
color:#b3b3ff;
margin:2px;
padding:.2em .4em
}
.pagination span.active {
background:#f4ebff;
border:1px solid #000099;
color:#000099;
font-weight:700;
margin:2px;
padding:.2em .4em
}
/******************************************************************************/
/* Tables */
table, tbody
{
background-color : rgb(218, 218, 218);
border-color : rgb(0, 0, 0);
border-style : solid;
border-radius : 3px;
border-spacing : 0px;
border-width : 1px;
color : rgb(0, 0, 0);
font-family : 'Trebuchet MS', Helvetica, sans-serif;
font-size : 9pt;
margin : 0px;
padding : 3px;
text-align : center;
vertical-align : middle;
}
table.left td
{
text-align : left;
}
table.left th
{
text-align : left;
}
table.transparent
{
background-color : rgb(255, 255, 255);
border : 0px;
padding : 0px;
}
/* Apply the style, only to the first level of "<td>" tags, of the table that uses this class*/
.transparent>tbody>tr>td
{
background-color : rgb(255, 255, 255);
border : 0px;
}
tr:nth-child(odd).alternate
{
background-color : rgb(224, 224, 224);
}
tr:nth-child(even).alternate
{
background-color : rgb(255, 255, 255);
}
th, thead, tfoot
{
background-color : rgb(174, 174, 174);
border-color : rgb(0, 0, 0);
border-style : solid;
border-radius : 0px;
border-spacing : 0px;
border-width : 1px;
padding : 3px;
}
td
{
border-color : rgb(0, 0, 0);
border-bottom-style : solid;
border-left-style : dotted;
border-right-style : dotted;
border-top-style : solid;
border-radius : 0px;
border-spacing : 0px;
border-width : 1px;
padding : 3px;
}
</style>
<!-- jQuery -->
<script class='include' type='text/javascript' src='<?php echo(FILE_JQUERY); ?>'></script>
<!-- TableExport.js -->
<link href='<?php echo(FILE_TABLEXPORT_CSS); ?>' rel="stylesheet">
<script type="text/javascript" src='<?php echo(FILE_XLSX_JS); ?>' charset="utf-8"></script>
<script type="text/javascript" src='<?php echo(FILE_FILESAVER_JS); ?>' charset="utf-8"></script>
<script type="text/javascript" src='<?php echo(FILE_TABLEXPORT_JS); ?>' charset="utf-8"></script>