reset.less 623 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. // reset & base
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. }
  6. div, span, a, img {
  7. box-sizing: border-box;
  8. }
  9. a {
  10. text-decoration: none;
  11. }
  12. a:hover {
  13. text-decoration: underline;
  14. }
  15. strong {
  16. font-weight: 700;
  17. }
  18. em {
  19. font-style: italic;
  20. }
  21. img {
  22. display: block;
  23. }
  24. .wrap {
  25. width: 1200px;
  26. margin: 0 auto;
  27. }
  28. .clear {
  29. clear: both;
  30. }
  31. .left {
  32. float: left;
  33. }
  34. .right {
  35. float: right;
  36. }
  37. .center {
  38. margin: 0 auto;
  39. text-align: center;
  40. }
  41. textarea:focus, input:focus, select:focus{
  42. outline: 0;
  43. }
  44. h1, h2, h3, h4, h5, h6 {
  45. font-family: 'geomanistbook';
  46. font-weight: normal;
  47. }