blob: 11839a949186ab03cfa8c35e52e15e3750ff5c01 (
plain)
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
|
.phork-file {
border: 1px solid #DDD;
border-bottom: 1px solid #CCC;
border-radius: 3px;
padding: 0px;
background-color: white;
margin-bottom: 2ex;
margin-top: 2ex;
}
.phork-content {
padding: 0.6ex;
}
.phork-content > .code {
overflow-x: auto;
}
.phork-file .code pre {
border: none;
background-color: inherit;
word-break: normal;
word-wrap: normal;
white-space: pre;
color: black;
font: normal normal 1em/1.2em monospace;
padding: 0px;
margin: 0px;
}
.phork-file .code .ln pre {
margin-right: 1ex;
color: #DDD;
}
.phork-meta {
background-color: #EEE;
font-size: 75%;
padding: 0.5ex 1ex;
margin: none;
}
.phork-meta a {
font-family: sans-serif;
text-decoration: none;
color: #888;
font-weight: bold;
}
|