This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
editor-style.css
162 lines (137 loc) · 2.67 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
.mceContentBody {
font: 19px/1.6 'Arimo', 'Helvetica Neue', Helvetica, sans-serif;
color:#555;
max-width: 75%;
}
.mceContentBody h1, .mceContentBody h2, .mceContentBody h3, .mceContentBody h4, .mceContentBody h5, .mceContentBody h6 {
margin: 0 0 4% 0;
font-family: 'Raleway', 'Helvetica Neue', Helvetica, sans-serif;
font-weight: normal;
text-transform: uppercase;
font-weight: 700;
line-height: 1.2;
}
.mceContentBody h1 {
font-size: 40px;
}
.mceContentBody h2 {
font-size: 34px;
}
.mceContentBody h3 {
font-size: 30px;
}
.mceContentBody h4 {
font-size: 24px;
}
.mceContentBody h5 {
font-size: 18px;
}
.mceContentBody h6 {
font-size: 14px;
}
.mceContentBody blockquote {
position: relative;
margin: 0 0 4% 0;
z-index: 1;
}
.mceContentBody blockquote p {
text-align: center;
font-size: 18px;
line-height: 1.7;
text-transform: uppercase;
letter-spacing: 1px;
color: #aaa;
border-top: solid 1px #eee;
border-bottom: solid 1px #eee;
padding: 4%;
margin-bottom: 0;
}
.mceContentBody ul,
.mceContentBody ol {
margin: 0 0 5% 20px;
line-height: 1.8;
}
.mceContentBody ul { list-style: disc }
.mceContentBody ol { list-style: decimal }
.mceContentBody ul ul,
.mceContentBody ol ol,
.mceContentBody ul ol,
.mceContentBody ol ul {
margin: .4em 0 0 1em;
}
.mceContentBody ol li {
list-style-type: decimal;
}
.highlight {
background: #fff198;
color: #222;
}
.intro {
display: inline-block;
text-align: center;
font-size: 15px;
text-transform: uppercase;
letter-spacing: 1px;
color: #aaa;
margin: 0 0 25px 0;
padding: 20px 0;
border-bottom: solid 1px #eee;
border-top: solid 1px #eee;
}
hr {
margin: 5% 0;
border: 0;
border-bottom: 1px dotted #ddd;
height: 1px;
}
pre {
position: relative;
background: #f7f7f7;
font-family: "Courier 10 Pitch", Courier, monospace;
font-size: 15px;
line-height: 1.6;
margin-bottom: 1.6em;
padding: 3% 5% 3% 10%;
overflow: auto;
max-width: 100%;
tab-size: 4;
}
pre:before {
position: absolute;
left: 0;
top: 0;
height: 100%;
font-family: "FontAwesome";
content: "\f121";
background: #BBC3CC;
color: #fff;
padding: 0 3px;
font-size: 14px;
z-index: 5;
}
code, kbd, tt, var { font: 15px Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace }
.alignright {
margin: 5px 0 30px 30px;
}
.alignleft {
margin: 5px 30px 30px 0;
}
.pull-right, .pull-left {
width: 34%;
font-weight: 400;
line-height: 1.4;
font-size: 22px;
font-family: 'Raleway', 'Helvetica Neue', Helvetica, sans-serif;
color: #9BA6AD;
text-transform: uppercase;
}
.pull-right {
float: right;
margin: 1% 0 3% 5%;
text-align: right;
}
.pull-left {
float: left;
margin: 0 3% 3% 0;
text-align: left;
}