-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheditor.css
More file actions
129 lines (125 loc) · 1.39 KB
/
editor.css
File metadata and controls
129 lines (125 loc) · 1.39 KB
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
/*
docman content
*/
layout, title,
div.topLeft, topLeft, div.top, top, div.topRight, topRight,
div.left, left, div.content, content, div.right, right,
div.bottomLeft, bottomLeft, div.bottom, bottom, div.bottomRight, bottomRight
{
display: block;
font-family: Arial, Helvetica, MS Sans Serif;
font-size: 10pt;
padding: 16px;
border: 1px solid black
margin-bottom: 8px;
}
title
{
font-weight: bold;
font-size: 2em;
text-decoration: underline;
margin-bottom: 16px;
}
/*
html css
*/
head, script, style
{
display: none;
}
body, p, div, ul, pre, h1, h2, h3, h4, h5, h6, br
{
display: block;
font-family: Arial, Helvetica, MS Sans Serif;
font-size: 10pt;
}
p, ul, pre, h1, h2, h3, h4, h5, h6
{
margin-bottom:16px;
}
h1, h2, h3, h4
{
font-weight: bold;
}
h1
{
font-size: 2em;
}
h2
{
font-size: 1.7em;
}
h3
{
font-size: 1.3em;
}
h4
{
font-weight: bold;
}
h5
{
text-decoration: underline;
}
ul, ol
{
margin-left: 40px;
}
pre
{
white-space: pre;
font-family: Courier New;
}
ul
{
list-style-type: circle;
}
ol
{
list-style-type: decimal;
}
li
{
display:list-item;
}
table
{
display: table;
}
thead
{
display: table-header-group;
}
tbody
{
display: table-row-group;
}
tfoot
{
display: table-footer-group;
}
tr
{
display: table-row;
}
td, th
{
display: table-cell;
padding: 2px;
}
th, b
{
font-weight: bold;
}
i
{
font-style: italic;
}
u, a
{
text-decoration: underline;
}
a
{
color: #0000FF;
}