This repository has been archived by the owner on Nov 4, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheditor-style.css
executable file
·210 lines (198 loc) · 3.13 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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
/* Theme Name: Graphene */
/* =Resets
-------------------------------------------------------------- */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
ul,
ol,
li,
form,
fieldset {
border: 0 none;
margin: 0;
padding: 0;
}
/* =Non-classed HTML elements
-------------------------------------------------------------- */
html {
background: #eee;
}
body {
color: #2c2b2b;
font: normal 12px arial;
line-height: 18px;
}
a,
a:visited {
color: #1772af;
text-decoration: none;
}
a:hover {
color: #074d7c;
text-decoration: none;
cursor: pointer;
}
/* =Container
-------------------------------------------------------------- */
.wp-editor {
padding: 10px;
min-height: 50%;
/* width: 620px; */
max-width: 95%;
margin: 10px auto;
background: #fff;
}
.wp-editor:hover {
cursor: text;
}
/* =Content
-------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
color: #333;
font: bold 16px arial;
margin: 20px 0 5px;
}
h1 {
font-size: 20px;
}
h2 {
border-bottom: none;
font-size: 18px;
}
h4 {
font-size: 14px;
}
h5 {
font-size: 13px;
}
h6 {
font-size: 12px;
}
p,
dt {
margin-top: 10px;
}
.wp-editor p:first-child {
margin-top: 0;
}
.wp-caption img {
margin-bottom: 0;
}
.wp-caption-text {
margin-top: 0;
}
ul {
list-style-position: outside;
margin: 10px 0 10px 30px;
}
ul li {
list-style-image: url(../../wp-content/themes/graphene/images/list-style-image.png);
margin-bottom: 7px;
}
ol {
margin: 5px 0 5px 30px;
}
ol li {
margin-bottom: 7px;
}
ol ol {
list-style-type: lower-alpha;
}
ol ol li {
margin-left: 0;
}
ol ol ol {
list-style-type: lower-roman;
}
img {
border: 4px solid #e3e3e3;
margin: 5px;
}
.wp-smiley {
border: none;
display: inline;
float: none;
margin: 0;
}
.alignright {
margin: 4px 0 12px 1em !important;
}
.alignleft {
margin: 4px 1em 12px 0 !important;
}
.aligncenter {
margin: 1em auto !important;
}
table {
border-collapse: collapse;
}
table td,
table th,
table tr {
border: 1px solid #ccc;
font-family: arial;
padding: 2px 5px;
}
table th {
background: #e0e0e0;
border-bottom-width: 2px;
}
table tr {
background: #f3f3f3;
}
table tr.alternate {
background: #fff;
}
blockquote {
background: url(../../wp-content/themes/graphene/images/sprite_master.png) left -475px no-repeat #f3f3f3;
border: 1px dotted #e3e3e3;
clear: both;
margin: 10px 0 10px 10px;
padding: 8px 18px 5px 10px;
}
blockquote p {
color: #474747;
margin-bottom: 5px;
margin-top: 0;
text-indent: 35px;
}
blockquote cite {
display: block;
font-style: italic;
margin-top: 10px;
text-align: right;
border: none;
}
blockquote blockquote {
margin-left: 0;
}
p cite {
display: block;
text-align: right;
}
p code {
background-color: #EDEDFF;
}
code.block,
pre.block {
background: url(../../wp-content/themes/graphene/images/sprite_master.png) -839px -446px no-repeat #f3f3f3;
border: 1px dotted #e3e3e3;
color: #000;
display: block;
font: normal 11px "Courier New";
margin: 10px 0;
padding: 15px 2px 2px 20px;
}