12345678910111213141516171819202122232425262728 |
- @charset "UTF-8";
- @import "lego/lego";
- /* S ZhuanTi Common */
- $main_width: 1000px;
- $yahei: "Microsoft YaHei", SimHei, sans-serif;
- html {
- font-size: 12px;
- overflow-y: scroll;
- font-family: $yahei;
- text-rendering: optimizeLegibility;
- -webkit-font-smoothing: antialiased;
- }
- body {
- a {
- text-decoration: none;
- &:hover {
- text-decoration: underline;
- }
- }
- p, a, span, em, i, h1, h2, h3, h4, h5, h6{
- text-rendering: optimizeLegibility;
- -webkit-font-smoothing: antialiased;
- }
- }
|