-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheditor-style.css
79 lines (67 loc) · 955 Bytes
/
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
/*
Theme Name: lovelydsgn
Description: Used to style the TinyMCE editor.
*/
html .mceContentBody {
max-width: 660px;
}
* {
color: inherit;
font-family: 'Open Sans', sans-serif;
font-style: inherit;
font-weight: inherit;
line-height: 175%;
}
body {
color: #484848;
font-family: 'Open Sans', sans-serif;
}
/* Alignment */
.alignleft {
display: inline;
float: left;
margin: 0 20px 0 0;
}
.alignright {
display: inline;
float: right;
margin: 0 0 0 20px;
}
.aligncenter {
clear: both;
display: block;
margin: 0 auto 0 auto;
}
/* =Content
----------------------------------------------- */
p{
font-size: 13px;
color: #484848;
margin-bottom: 10px;
line-height: 175%;
}
img{
border-radius: 3px;
}
em{
font-style: italic;
}
strong{
font-weight: bold;
}
ul,
ol{
margin-left: 30px;
font-size: 13px;
color: #484848;
}
ul{
list-style-type: circle;
}
ol{
list-style-type: decimal;
}
a{
color: #447bc4;
text-decoration: none;
}