-
Notifications
You must be signed in to change notification settings - Fork 67
/
demo.css
47 lines (39 loc) · 1.07 KB
/
demo.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
/* ---- Basic CSS reset ------------------------------------------------------ */
*, ::after, ::before {
-webkit-box-sizing: border-box;
box-sizing: border-box;
margin: 0;
}
body,
html {
margin: 0;
padding: 0;
}
.ck.ck-content.ck-editor__editable_inline > :first-child {
margin-top: 0;
}
/* ---- Styles of the demo page ------------------------------------------------------ */
.editor-wrapper {
max-width: 66rem;
margin: 0 auto 2rem auto;
}
.header-wrapper {
padding: 1rem 2rem;
}
/* ---- Editor with bottom toolbar UI styles ------------------------------------------------------------------- */
#cke5-editor-types-demo-bottom-toolbar {
display: flex;
flex-direction: column;
}
#cke5-editor-types-demo-bottom-toolbar-content {
border-bottom-left-radius: 0;
border-bottom-right-radius: 0;
}
#cke5-editor-types-demo-bottom-toolbar-content:not(.ck-focused) {
border-color: var(--ck-color-base-border);
}
#cke5-editor-types-demo-bottom-toolbar-toolbar-container > .ck.ck-toolbar {
border-top-width: 0;
border-top-left-radius: 0;
border-top-right-radius: 0;
}