-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
91 lines (76 loc) · 1.46 KB
/
style.css
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
body {
background-color: #222222;
color: white;
font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
}
textarea {
width: 98%;
box-sizing: border-box;
padding: 5px;
margin: 5px;
color: white;
background-color: black;
border: 1px solid grey;
border-radius: 3px;
font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
font-size: 10pt;
}
div {
padding: 5px;
margin: 5px;
background-color: black;
border: 1px solid grey;
border-radius: 3px;
font-size: 10pt;
}
a {
color: #AAF;
}
#path {
color: lightblue;
}
#filename {
text-decoration: underline;
text-decoration-style: dotted;
text-decoration-color: #488;
}
#insid {
color: #FFFFAA;
}
#error {
color: #FF3333;
font-weight: bolder;
}
#warning {
color: #FFCC33;
font-weight: bolder;
}
#loc {
color: #BBF;
}
#namespace {
text-decoration: underline;
text-decoration-style: dotted;
text-decoration-color: #BBB;
}
hr.file {
padding: 2pt;
border: none;
border-top: medium double #CCC;
color: #CCC;
}
#output {
margin-left: 12pt;
white-space: pre-wrap;
display: block;
}
#input {
margin-left: 12pt;
}
#navi {
position: fixed;
z-index: 100;
left: 2px;
top: 20pt;
font-size: 8pt;
}