You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. @import "normalize";
  2. * {
  3. box-sizing: border-box;
  4. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  5. }
  6. *:before,
  7. *:after {
  8. box-sizing: border-box;
  9. }
  10. body {
  11. font-family: @font-family;
  12. font-size: @font-size-small;
  13. line-height: @line-height-base;
  14. color: @text-color;
  15. background-color: @body-background;
  16. -webkit-font-smoothing: antialiased;
  17. -moz-osx-font-smoothing: grayscale;
  18. }
  19. body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, fieldset, legend, input, textarea, p, blockquote, th, td, hr, button, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  20. margin: 0;
  21. padding: 0;
  22. }
  23. button, input, select, textarea {
  24. font-family: inherit;
  25. font-size: inherit;
  26. line-height: inherit;
  27. }
  28. ul,
  29. ol {
  30. list-style: none;
  31. }
  32. input::-ms-clear, input::-ms-reveal {
  33. display: none;
  34. }
  35. a {
  36. color: @link-color;
  37. background: transparent;
  38. text-decoration: none;
  39. outline: none;
  40. cursor: pointer;
  41. transition: color @transition-time ease;
  42. &:hover {
  43. color: @link-hover-color;
  44. }
  45. &:active {
  46. color: @link-active-color;
  47. }
  48. &:active,
  49. &:hover {
  50. outline: 0;
  51. text-decoration: none;
  52. }
  53. &[disabled] {
  54. color: #ccc;
  55. cursor: @cursor-disabled;
  56. pointer-events: none;
  57. }
  58. }
  59. code,
  60. kbd,
  61. pre,
  62. samp {
  63. font-family: @code-family;
  64. }