-
Notifications
You must be signed in to change notification settings - Fork 4.2k
/
main.scss
86 lines (71 loc) · 1.03 KB
/
main.scss
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
body.toplevel_page_gutenberg {
background: $white;
#update-nag, .update-nag {
display: none;
}
#wpcontent {
padding-left: 0;
}
#wpfooter {
display: none;
}
}
.gutenberg {
* {
box-sizing: border-box;
}
svg {
fill: currentColor;
}
ul {
list-style-type: disc;
}
ol {
list-style-type: decimal;
}
ul,
ol {
margin: 0;
padding: 0;
}
select {
font-size: 13px;
color: $dark-gray-500;
}
}
.gutenberg__editor {
position: relative;
img {
max-width: 100%;
}
iframe {
width: 100%;
}
@include break-small() {
padding-top: $header-height;
}
}
.editor-sidebar,
.editor-post-title,
.editor-visual-editor__block {
input,
textarea {
border-radius: 4px;
border-color: $light-gray-500;
font-family: $default-font;
font-size: $default-font-size;
padding: 6px 10px;
&::-webkit-input-placeholder {
color: $dark-gray-100;
}
&::-moz-placeholder {
color: $dark-gray-100;
}
&:-ms-input-placeholder {
color: $dark-gray-100;
}
&:-moz-placeholder {
color: $dark-gray-100;
}
}
}