80 lines
1.0 KiB
SCSS
80 lines
1.0 KiB
SCSS
#write {
|
|
|
|
position: relative;
|
|
height:100%;
|
|
|
|
/* Write - Editor */
|
|
|
|
#editor_container {
|
|
height: calc(100% - 2em);
|
|
overflow: hidden;
|
|
position: relative;
|
|
|
|
#editor_content {
|
|
|
|
height:auto;
|
|
position: relative;
|
|
|
|
.ql-container {
|
|
padding: 0;
|
|
}
|
|
|
|
.ql-editor, #context {
|
|
padding:0;
|
|
font-family: $font_para;
|
|
font-size: 14px;
|
|
|
|
div {
|
|
margin:0;
|
|
}
|
|
|
|
p {
|
|
text-indent: 1.5em;
|
|
margin: 0;
|
|
padding: 0;
|
|
text-align: justify;
|
|
line-height: 1.5em;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Write - Navbar */
|
|
|
|
#nav {
|
|
position:absolute;
|
|
bottom:0;
|
|
right:0;
|
|
left:0;
|
|
text-align: center;
|
|
|
|
.nav-elem {
|
|
color: $gray-500;
|
|
width: 1.25em;
|
|
display: inline-block;
|
|
text-align: center;
|
|
}
|
|
|
|
.fa-prev, .fa-next {
|
|
cursor: pointer;
|
|
display: none;
|
|
|
|
&:hover {
|
|
color: $gray-700;
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Write - Feedback */
|
|
|
|
#write_feedback {
|
|
position:absolute;
|
|
top: -2.5rem;
|
|
right: -1rem;
|
|
font-size: 0.8em;
|
|
|
|
.notice {
|
|
color: $gray-400;
|
|
}
|
|
}
|
|
} |