writing mode v1.0
This commit is contained in:
12
public/css/editor/editor-writting-mode.css
Normal file
12
public/css/editor/editor-writting-mode.css
Normal file
@ -0,0 +1,12 @@
|
||||
html {
|
||||
border: none;
|
||||
}
|
||||
body {
|
||||
background-color: #fbfcf7;
|
||||
}
|
||||
* {
|
||||
font-size: 16px;
|
||||
}
|
||||
pre {
|
||||
font-size: 14px;
|
||||
}
|
15
public/css/editor/editor-writting-mode.less
Normal file
15
public/css/editor/editor-writting-mode.less
Normal file
@ -0,0 +1,15 @@
|
||||
|
||||
@bgColor: #fbfcf7;
|
||||
|
||||
html {
|
||||
border: none;
|
||||
}
|
||||
body {
|
||||
background-color: @bgColor;
|
||||
}
|
||||
* {
|
||||
font-size: 16px;
|
||||
}
|
||||
pre {
|
||||
font-size:14px;
|
||||
}
|
12
public/css/editor/editor.css
Normal file
12
public/css/editor/editor.css
Normal file
@ -0,0 +1,12 @@
|
||||
html {
|
||||
margin-top: 3px;
|
||||
padding: 3px;
|
||||
border: 1px solid #ebeff2;
|
||||
border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-width: 1px;
|
||||
box-shadow: none;
|
||||
}
|
||||
* {
|
||||
font-family: 'Open Sans', 'Helvetica Neue', Arial, 'Hiragino Sans GB', 'Microsoft YaHei', 'WenQuanYi Micro Hei', sans-serif;
|
||||
}
|
24
public/css/editor/editor.less
Normal file
24
public/css/editor/editor.less
Normal file
@ -0,0 +1,24 @@
|
||||
|
||||
@bgColor: #fff;
|
||||
@headerBgColor: #fff;
|
||||
@fontFamily: 'Open Sans','Helvetica Neue',Arial,'Hiragino Sans GB','Microsoft YaHei','WenQuanYi Micro Hei',sans-serif;
|
||||
@aWhiteColor: #fff;
|
||||
@aBlackColor: #000;
|
||||
@borderColor: #EBEFF2;
|
||||
@headerHeight: 60px;
|
||||
@hColor: #5AD4A0;
|
||||
@titleColor: @hColor;
|
||||
@fontSize: 14px;
|
||||
|
||||
html {
|
||||
margin-top: 3px;
|
||||
padding: 3px;
|
||||
border: 1px solid @borderColor;
|
||||
border-radius: 5px;
|
||||
-webkit-border-radius: 5px;
|
||||
border-width: 1px;
|
||||
box-shadow: none;
|
||||
}
|
||||
* {
|
||||
font-family: @fontFamily;
|
||||
}
|
Reference in New Issue
Block a user