5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-07-03 23:25:46 +00:00
panel/app/assets/stylesheets/editor.scss

42 lines
744 B
SCSS
Raw Normal View History

2020-11-03 21:16:59 +00:00
.editor {
2020-11-03 21:29:47 +00:00
box-sizing: border-box;
*, *::before, *::after { box-sizing: inherit; }
h1, h2, h3, h4, h5, h6, p {
min-height: 1.4em;
line-height: 1.4;
margin: 0;
}
mark {
background: #f206f9;
padding: 0;
}
.selected { outline: #f206f9 solid medium; }
.selected-unactive { outline: gray solid medium; }
2020-11-03 21:29:47 +00:00
img, video, iframe, audio {
2020-11-03 21:29:47 +00:00
width: 100%;
max-width: 600px;
display: block;
margin: 0 auto;
}
ol, ul { margin: 0; }
2020-11-03 21:16:59 +00:00
.editor-content {
2020-11-06 14:50:41 +00:00
word-wrap: break-word;
2020-11-03 21:16:59 +00:00
div[data-align="left"] { text-align: left; }
div[data-align="center"] { text-align: center; }
div[data-align="right"] { text-align: right; }
}
2020-11-05 22:19:02 +00:00
*[data-editor-loading] {
opacity: 0.5;
}
*[data-editor-error] {
filter: grayscale(100%);
}
2020-11-03 21:16:59 +00:00
}