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.

74 lines
1.1 KiB

  1. @import "themes/default/global.variables";
  2. @import "reset.less";
  3. /*******************************
  4. Page
  5. *******************************/
  6. html,
  7. body {
  8. font-size: @fontSize;
  9. }
  10. body {
  11. background: @bodyBackground;
  12. font-family: @fontFamily;
  13. margin: 0px;
  14. padding: 0px;
  15. color: #555555;
  16. min-width: 320px;
  17. }
  18. /*******************************
  19. Text
  20. *******************************/
  21. h1,
  22. h2,
  23. h3,
  24. h4,
  25. h5 {
  26. margin: 1em 0em 1rem;
  27. padding: 0em;
  28. }
  29. p {
  30. margin: 1em 0em;
  31. }
  32. p:first-child {
  33. margin-top: 0em;
  34. }
  35. p:last-child {
  36. margin-bottom: 0em;
  37. }
  38. /*-------------------
  39. Links
  40. --------------------*/
  41. a {
  42. color: @linkColor;
  43. text-decoration: @linkUnderline;
  44. }
  45. a:hover {
  46. color: @linkHoverColor;
  47. }
  48. /*******************************
  49. Highlighting
  50. *******************************/
  51. ::-webkit-selection {
  52. background-color: @highlightBackground;
  53. color: @highlightColor;
  54. }
  55. ::-moz-selection {
  56. background-color: @highlightBackground;
  57. color: @highlightColor;
  58. }
  59. ::selection {
  60. background-color: @highlightBackground;
  61. color: @highlightColor;
  62. }