86 lines
1.7 KiB
CSS
86 lines
1.7 KiB
CSS
.clearfix {
|
|
*zoom: 1;
|
|
}
|
|
|
|
.clearfix:before,.clearfix:after {
|
|
display: table;
|
|
content: "";
|
|
line-height: 0
|
|
}
|
|
|
|
.clearfix:after {
|
|
clear: both
|
|
}
|
|
|
|
.hide-text {
|
|
font: 0/0 a;
|
|
color: transparent;
|
|
text-shadow: none;
|
|
background-color: transparent;
|
|
border: 0
|
|
}
|
|
|
|
.input-block-level {
|
|
display: block;
|
|
width: 100%;
|
|
min-height: 30px;
|
|
-webkit-box-sizing: border-box;
|
|
-moz-box-sizing: border-box;
|
|
box-sizing: border-box
|
|
}
|
|
|
|
.md-editor {
|
|
display: block;
|
|
border: 1px solid #ddd
|
|
}
|
|
|
|
.md-editor>.md-header,.md-editor .md-footer {
|
|
display: block;
|
|
padding: 6px 4px;
|
|
background: #fff
|
|
}
|
|
|
|
.md-editor>.md-preview {
|
|
background: #fff;
|
|
border-top: 1px dashed #ddd;
|
|
border-bottom: 1px dashed #ddd;
|
|
min-height: 10px
|
|
}
|
|
|
|
.md-editor>textarea {
|
|
font-family: Monaco, Menlo, Consolas, "Courier New", monospace;
|
|
font-size: 14px;
|
|
outline: 0;
|
|
outline: thin dotted \9;
|
|
margin: 0;
|
|
display: block;
|
|
padding: 0;
|
|
width: 100%;
|
|
border: 0;
|
|
border-top: 1px dashed #ddd;
|
|
border-bottom: 1px dashed #ddd;
|
|
border-radius: 0;
|
|
box-shadow: none;
|
|
background: #eee
|
|
}
|
|
|
|
.md-editor>textarea:focus {
|
|
box-shadow: none;
|
|
background: #fff
|
|
}
|
|
|
|
.md-editor.active {
|
|
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
|
|
rgba(82, 168, 236, .6);
|
|
-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
|
|
rgba(82, 168, 236, .6);
|
|
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px
|
|
rgba(82, 168, 236, .6);
|
|
border-color: rgba(82, 168, 236, 0.8);
|
|
outline: 0;
|
|
outline: thin dotted \9;
|
|
-webkit-transition: border linear .2s, box-shadow linear .2s;
|
|
-moz-transition: border linear .2s, box-shadow linear .2s;
|
|
-o-transition: border linear .2s, box-shadow linear .2s;
|
|
transition: border linear .2s, box-shadow linear .2s
|
|
} |