This repository was archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathstyle-editor.css
More file actions
83 lines (70 loc) · 1.42 KB
/
style-editor.css
File metadata and controls
83 lines (70 loc) · 1.42 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
/*
Styles for the block editor
*/
/* Import Atomic Blocks Sass Variables (inc/sass/variables.scss) */
body {
color: #333;
font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 20px;
}
p, ul, ol, dl {
font-size: 20px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-weight: 700;
line-height: 1.3;
margin: 0 0 20px;
}
a {
text-decoration: none;
}
/* Editor post title */
.editor-post-title__input {
font-family: 'Nunito Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 50px;
font-weight: 700;
line-height: 1.3;
}
/* Main column width */
.wp-block {
max-width: 830px;
}
/* Width of "wide" blocks */
.wp-block[data-align="wide"] {
max-width: 1080px;
}
/* Width of "full-wide" blocks */
.wp-block[data-align="full"] {
max-width: none;
}
.wp-block[data-align="full"] .wp-block,
.wp-block[data-align="wide"] .wp-block,
.wp-block[data-type="atomic-blocks/ab-columns"] .wp-block,
.ab-block-container .wp-block {
max-width: 100%;
}
.wp-block-quote {
font-weight: bold;
padding-left: 30px;
}
.wp-block-separator {
background-color: transparent;
border: 0;
height: 0px;
margin: 2em 0;
max-width: 100%;
border: solid 1px #ddd;
}
.editor-block-list__block[data-align=center] {
text-align: center;
}
#editor .wp-block-cover-text {
font-size: 2em;
}
/*# sourceMappingURL=style-editor.css.map */