-
Notifications
You must be signed in to change notification settings - Fork 1
/
gutenberg-editor.css
97 lines (80 loc) · 1.44 KB
/
gutenberg-editor.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
.edit-post-visual-editor.editor-styles-wrapper {
font-family: 'Open Sans', sans-serif;
}
/* Matches entry-title in style.css. */
.editor-post-title__block .editor-post-title__input {
font-family: 'Montserrat', sans-serif;
font-size: 2rem;
text-decoration: none;
padding-bottom: 4px;
text-transform: uppercase;
letter-spacing: 2px;
font-weight: normal;
background: url(../images/border.png) repeat-x bottom;
}
a:focus {
outline: thin dotted;
}
a:hover,
a:active {
outline: 0;
}
a img {
border: 0;
}
a {
text-decoration: underline;
}
a:hover {
text-decoration: none;
}
a {
color: #666;
}
a:visited {
color: #666;
}
a:hover,
a:focus,
a:active {
color: #000;
}
.wp-block {
max-width: 33rem;
}
.wp-block-button__link {
text-decoration: underline;
}
.wp-block-button__link:hover,
.wp-block-button__link:focus {
text-decoration: none;
}
.wp-block-table td,
.wp-block-table th {
border: 1px solid #ccc;
}
pre {
background: #eee;
font-family: "Courier 10 Pitch", Courier, monospace;
line-height: 1.6;
margin-bottom: 1.5rem;
max-width: 100%;
overflow: hidden;
padding: 1.6em;
word-wrap: break-word;
white-space: pre-wrap;
}
.wp-block-code {
font-family: Menlo, Consolas, monaco, monospace;
color: currentColor;
padding: 0.8em 1em;
border: 1px solid #ccc;
border-radius: 4px;
background: transparent;
}
/* Increase contrast */
.wp-block-latest-comments__comment-date,
.wp-block-quote cite,
.wp-block-audio figcaption {
color: #333;
}