Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.
 
 

127 rindas
1.7 KiB

  1. html * {
  2. -webkit-font-smoothing: antialiased;
  3. -moz-osx-font-smoothing: grayscale;
  4. }
  5. body {
  6. font-size: 1rem;
  7. }
  8. body,
  9. h1,
  10. h2,
  11. h3,
  12. h4,
  13. h5,
  14. h6 {
  15. font-family: "Roboto", "Helvetica", "Arial", sans-serif;
  16. font-weight: 300;
  17. line-height: 1.5em;
  18. }
  19. h1,
  20. h2,
  21. h3,
  22. h4,
  23. h5,
  24. h6 {
  25. color: inherit;
  26. }
  27. h1,
  28. h2,
  29. h3 {
  30. margin-top: 20px;
  31. margin-bottom: 10px;
  32. }
  33. h4,
  34. h5,
  35. h6 {
  36. margin-top: 10px;
  37. margin-bottom: 10px;
  38. }
  39. h1 {
  40. font-size: 3.3125rem;
  41. line-height: 1.15em;
  42. }
  43. h2 {
  44. font-size: 2.25rem;
  45. line-height: 1.5em;
  46. }
  47. h3 {
  48. font-size: 1.5625rem;
  49. line-height: 1.4em;
  50. }
  51. h4 {
  52. font-size: 1.125rem;
  53. line-height: 1.5em;
  54. }
  55. h5 {
  56. font-size: 1.0625rem;
  57. line-height: 1.55em;
  58. }
  59. h6 {
  60. font-size: 0.75rem;
  61. text-transform: uppercase;
  62. font-weight: 500;
  63. }
  64. p {
  65. font-size: 14px;
  66. margin: 0 0 10px;
  67. }
  68. html {
  69. font-family: sans-serif;
  70. line-height: 1.15;
  71. -webkit-text-size-adjust: 100%;
  72. -ms-text-size-adjust: 100%;
  73. -ms-overflow-style: scrollbar;
  74. -webkit-tap-highlight-color: transparent;
  75. }
  76. body {
  77. background-color: #e5e5e5;
  78. color: $black-color;
  79. margin: 0;
  80. font-size: 1rem;
  81. text-align: left;
  82. }
  83. legend {
  84. border-bottom: 0;
  85. }
  86. // Prevent highlight on mobile
  87. * {
  88. -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  89. -webkit-tap-highlight-color: transparent;
  90. box-sizing: border-box;
  91. &:focus {
  92. outline: 0;
  93. }
  94. }
  95. a {
  96. color: $link-color;
  97. text-decoration: none;
  98. background-color: transparent;
  99. &:hover,
  100. &:focus {
  101. color: darken($link-color, 5%);
  102. text-decoration: none;
  103. }
  104. }
  105. label {
  106. font-size: 14px;
  107. line-height: 1.42857;
  108. color: $checkboxes-text-color;
  109. font-weight: 400;
  110. }
  111. small {
  112. font-size: 75%;
  113. color: #777;
  114. font-weight: 400;
  115. }
  116. img {
  117. vertical-align: middle;
  118. border-style: none;
  119. }
  120. form {
  121. margin-bottom: 1.125rem;
  122. }