-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage_source_css.php
More file actions
41 lines (41 loc) · 951 Bytes
/
Copy pathpage_source_css.php
File metadata and controls
41 lines (41 loc) · 951 Bytes
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
<?php
require_once 'site_global.php';
require_once 'page_source.php';
header("Content-type: text/css");
?>
.source-line-number {
float: left;
color: gray;
background-color: #111111;
opacity: 0.90;
font-family: Consolas, "Lucida Console", Monaco, Courier, monospace;
font-size: 14px;
text-align: right;
margin: 0px;
padding: 0px;
border-spacing: 0px;
margin-right: 0pt;
padding-right: 6pt;
border-spacing-right: 0px;
border-right: 1px solid gray;
vertical-align: top;
white-space: normal;
}
.source-code {
background-color: black;
opacity: 0.70;
width: 100%;
font-family: Consolas, "Lucida Console", Monaco, Courier, monospace;
font-size: 14px;
margin: 0px;
padding: 0px;
border-spacing: 0px;
margin-left: 0pt;
padding-left: 6px;
border-spacing-left: 6px;
vertical-align: top;
white-space: nowrap;
}
#page-source {
display: none;
}