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.

154 lines
2.4 KiB

  1. /*!
  2. * # Semantic UI 2.1.6 - Site
  3. * http://github.com/semantic-org/semantic-ui/
  4. *
  5. *
  6. * Copyright 2015 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. /*******************************
  12. Page
  13. *******************************/
  14. html,
  15. body {
  16. height: 100%;
  17. }
  18. html {
  19. font-size: 13px;
  20. }
  21. body {
  22. margin: 0px;
  23. padding: 0px;
  24. overflow-x: visible;
  25. min-width: 320px;
  26. background: #FFFFFF;
  27. font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  28. font-size: 13px;
  29. line-height: 1.4285em;
  30. color: rgba(0, 0, 0, 0.87);
  31. font-smoothing: antialiased;
  32. }
  33. /*******************************
  34. Headers
  35. *******************************/
  36. h1,
  37. h2,
  38. h3,
  39. h4,
  40. h5 {
  41. font-family: 'Arial', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  42. line-height: 1.2857em;
  43. margin: calc(2rem - 0.14285em ) 0em 1rem;
  44. font-weight: bold;
  45. padding: 0em;
  46. }
  47. h1 {
  48. min-height: 1rem;
  49. font-size: 2.25em;
  50. }
  51. h2 {
  52. font-size: 1.714rem;
  53. }
  54. h3 {
  55. font-size: 1.28rem;
  56. }
  57. h4 {
  58. font-size: 1.071rem;
  59. }
  60. h5 {
  61. font-size: 1rem;
  62. }
  63. h1:first-child,
  64. h2:first-child,
  65. h3:first-child,
  66. h4:first-child,
  67. h5:first-child {
  68. margin-top: 0em;
  69. }
  70. h1:last-child,
  71. h2:last-child,
  72. h3:last-child,
  73. h4:last-child,
  74. h5:last-child {
  75. margin-bottom: 0em;
  76. }
  77. /*******************************
  78. Text
  79. *******************************/
  80. p {
  81. margin: 0em 0em 1em;
  82. line-height: 1.4285em;
  83. }
  84. p:first-child {
  85. margin-top: 0em;
  86. }
  87. p:last-child {
  88. margin-bottom: 0em;
  89. }
  90. /*-------------------
  91. Links
  92. --------------------*/
  93. a {
  94. color: #4078C0;
  95. text-decoration: none;
  96. }
  97. a:hover {
  98. color: #4078C0;
  99. text-decoration: underline;
  100. }
  101. /*******************************
  102. Highlighting
  103. *******************************/
  104. /* Site */
  105. ::-webkit-selection {
  106. background-color: #CCE2FF;
  107. color: rgba(0, 0, 0, 0.87);
  108. }
  109. ::-moz-selection {
  110. background-color: #CCE2FF;
  111. color: rgba(0, 0, 0, 0.87);
  112. }
  113. ::selection {
  114. background-color: #CCE2FF;
  115. color: rgba(0, 0, 0, 0.87);
  116. }
  117. /* Form */
  118. textarea::-webkit-selection,
  119. input::-webkit-selection {
  120. background-color: rgba(100, 100, 100, 0.4);
  121. color: rgba(0, 0, 0, 0.87);
  122. }
  123. textarea::-moz-selection,
  124. input::-moz-selection {
  125. background-color: rgba(100, 100, 100, 0.4);
  126. color: rgba(0, 0, 0, 0.87);
  127. }
  128. textarea::selection,
  129. input::selection {
  130. background-color: rgba(100, 100, 100, 0.4);
  131. color: rgba(0, 0, 0, 0.87);
  132. }
  133. /*******************************
  134. Site Overrides
  135. *******************************/