-
Notifications
You must be signed in to change notification settings - Fork 12
/
editor-style.css
186 lines (155 loc) · 3.22 KB
/
editor-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
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
body#tinymce.wp-editor {
font-family: "Lato", sans-serif;
font-size: 16px;
line-height: 1.5;
}
body#tinymce.wp-editor h1,
body#tinymce.wp-editor h2,
body#tinymce.wp-editor h3,
body#tinymce.wp-editor h4,
body#tinymce.wp-editor h5,
body#tinymce.wp-editor h6 {
clear: both;
font-family: "Oswald", sans-serif;
text-transform: uppercase;
margin-bottom: 0.5em;
}
body#tinymce.wp-editor h1 {
font-size: 36px;
}
body#tinymce.wp-editor h2 {
font-size: 28px;
}
body#tinymce.wp-editor h3 {
font-size: 24px;
}
body#tinymce.wp-editor h4 {
font-size: 20px;
}
body#tinymce.wp-editor h5 {
font-size: 18px;
}
body#tinymce.wp-editor h6 {
font-size: 16px;
}
body#tinymce.wp-editor p {
margin-bottom: 1.5em;
}
body#tinymce.wp-editor b,
body#tinymce.wp-editor strong {
font-weight: bold;
}
body#tinymce.wp-editor dfn,
body#tinymce.wp-editor cite,
body#tinymce.wp-editor em,
body#tinymce.wp-editor i,
body#tinymce.wp-editor blockquote,
body#tinymce.wp-editor q {
font-style: italic;
}
body#tinymce.wp-editor blockquote,
body#tinymce.wp-editor q {
margin: 0 1.5em 1.5em 3em;
position: relative;
font-weight: bold;
font-size: 18px;
}
body#tinymce.wp-editor blockquote p {
display: inline;
}
body#tinymce.wp-editor cite {
display: block;
font-weight: normal;
font-size: 14px;
position: relative;
text-indent: 2.5em;
margin-top: 0.5em;
}
body#tinymce.wp-editor address {
margin: 0 0 1.5em;
}
body#tinymce.wp-editor pre {
background: #f4f4f4;
border: 1px solid #e0e0e0;
font-family: "Courier 10 Pitch", Courier, monospace;
font-size: 14px;
line-height: 1.6;
margin-bottom: 1.6em;
max-width: 100%;
overflow: auto;
padding: 15px;
}
body#tinymce.wp-editor code,
body#tinymce.wp-editor kbd,
body#tinymce.wp-editor tt,
body#tinymce.wp-editor var {
font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
font-size: 14px;
background: #f4f4f4;
border: 1px solid #e0e0e0;
padding: 1px 3px;
}
body#tinymce.wp-editor abbr,
body#tinymce.wp-editor acronym {
border-bottom: 1px dotted #666;
cursor: help;
}
body#tinymce.wp-editor mark,
body#tinymce.wp-editor ins {
background: #fff9c0;
text-decoration: none;
}
body#tinymce.wp-editor sup,
body#tinymce.wp-editor sub {
font-size: 75%;
height: 0;
line-height: 0;
position: relative;
vertical-align: baseline;
}
body#tinymce.wp-editor sup {
bottom: 1ex;
}
body#tinymce.wp-editor sub {
top: .5ex;
}
body#tinymce.wp-editor small {
font-size: 75%;
}
body#tinymce.wp-editor big {
font-size: 125%;
}
body#tinymce.wp-editor table {
margin: 0 0 1.5em;
width: 100%;
background: #f4f4f4;
border-top: 1px solid #e0e0e0;
}
body#tinymce.wp-editor caption {
font-size: 16px;
font-family: "Oswald", sans-serif;
text-transform: uppercase;
padding: 0.625em 15px;
margin: 0 0 -1px;
}
body#tinymce.wp-editor th,
body#tinymce.wp-editor td {
font-size: 14px;
padding: 0.625em;
border-bottom: 1px solid #e0e0e0;
text-align: center;
}
body#tinymce.wp-editor thead th {
font-weight: bold;
}
body#tinymce.wp-editor tbody td {
border-right: 1px solid #e0e0e0;
}
body#tinymce.wp-editor th:first-child,
body#tinymce.wp-editor td:first-child {
border-left: 1px solid #e0e0e0;
}
body#tinymce.wp-editor th:last-child,
body#tinymce.wp-editor td:last-child {
border-right: 1px solid #e0e0e0;
}