global.scss 558 B

12345678910111213141516171819202122232425262728
  1. @charset "UTF-8";
  2. @import "lego/lego";
  3. /* S ZhuanTi Common */
  4. $main_width: 1000px;
  5. $yahei: "Microsoft YaHei", SimHei, sans-serif;
  6. html {
  7. font-size: 12px;
  8. overflow-y: scroll;
  9. font-family: $yahei;
  10. text-rendering: optimizeLegibility;
  11. -webkit-font-smoothing: antialiased;
  12. }
  13. body {
  14. a {
  15. text-decoration: none;
  16. &:hover {
  17. text-decoration: underline;
  18. }
  19. }
  20. p, a, span, em, i, h1, h2, h3, h4, h5, h6{
  21. text-rendering: optimizeLegibility;
  22. -webkit-font-smoothing: antialiased;
  23. }
  24. }