39 lines
674 B
SCSS
39 lines
674 B
SCSS
.markItUpHeader {
|
|
ul {
|
|
background: $whitish;
|
|
padding: .3rem;
|
|
li {
|
|
display: inline-block;
|
|
float: none;
|
|
a {
|
|
opacity: .8;
|
|
&:hover {
|
|
opacity: .3;
|
|
transition: opacity .2s linear;
|
|
}
|
|
}
|
|
}
|
|
.preview-icon {
|
|
position: absolute;
|
|
right: 2.5rem;
|
|
}
|
|
}
|
|
}
|
|
|
|
.markItUpContainer {
|
|
padding: 0;
|
|
}
|
|
|
|
.markdown {
|
|
position: relative;
|
|
}
|
|
|
|
.preview {
|
|
.actions {
|
|
background: $whitish;
|
|
margin-top: .5rem;
|
|
min-height: 2rem;
|
|
padding: .3rem;
|
|
}
|
|
}
|