2018-08-21 05:02:21 +08:00
|
|
|
@import "~variables";
|
|
|
|
|
|
|
|
* {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
text-size-adjust: 100%;
|
|
|
|
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
|
|
|
|
-webkit-touch-callout: none;
|
|
|
|
-webkit-font-smoothing: antialiased;
|
|
|
|
-moz-osx-font-smoothing: grayscale;
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*::before,
|
|
|
|
*::after {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
html {
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, San Francisco, Roboto, Segoe UI, Helvetica Neue, sans-serif;
|
|
|
|
font-size: 18px;
|
|
|
|
color: $color-black;
|
|
|
|
line-height: 1.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2018-08-22 21:42:03 +08:00
|
|
|
a {
|
|
|
|
color: inherit;
|
|
|
|
}
|
2018-08-21 05:02:21 +08:00
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
2018-08-23 14:03:42 +08:00
|
|
|
h3,
|
2018-08-21 05:02:21 +08:00
|
|
|
p,
|
|
|
|
ul,
|
|
|
|
ol,
|
2018-08-22 22:46:30 +08:00
|
|
|
pre,
|
|
|
|
blockquote {
|
2018-08-21 05:02:21 +08:00
|
|
|
margin: 1rem 0;
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2018-08-23 14:03:42 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3 {
|
|
|
|
line-height: 1.3;
|
2018-09-07 05:29:00 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
@import "./editor";
|
|
|
|
@import "./menubar";
|
|
|
|
@import "./menububble";
|