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.

135 lines
2.2 KiB

10 years ago
10 years ago
10 years ago
9 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
  1. /*
  2. * # Semantic UI
  3. * https://github.com/Semantic-Org/Semantic-UI
  4. * http://www.semantic-ui.com/
  5. *
  6. * Copyright 2014 Contributors
  7. * Released under the MIT license
  8. * http://opensource.org/licenses/MIT
  9. *
  10. */
  11. @import 'http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic&subset=latin';
  12. /*******************************
  13. Page
  14. *******************************/
  15. /* UI requires Border-Box */
  16. *,
  17. *:before,
  18. *:after {
  19. box-sizing: border-box;
  20. }
  21. html,
  22. body {
  23. height: 100%;
  24. }
  25. html {
  26. font-size: 14px;
  27. }
  28. body {
  29. margin: 0px;
  30. padding: 0px;
  31. min-width: 278px;
  32. background: #f7f7f7;
  33. font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  34. font-size: 14px;
  35. line-height: 1.33;
  36. color: rgba(0, 0, 0, 0.8);
  37. font-smoothing: antialiased;
  38. }
  39. /*******************************
  40. Headers
  41. *******************************/
  42. h1,
  43. h2,
  44. h3,
  45. h4,
  46. h5 {
  47. font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  48. line-height: 1.33em;
  49. margin: -webkit-calc(2rem - 0.165em ) 0em 1rem;
  50. margin: calc(2rem - 0.165em ) 0em 1rem;
  51. font-weight: bold;
  52. padding: 0em;
  53. }
  54. h1 {
  55. min-height: 1rem;
  56. font-size: 2rem;
  57. }
  58. h2 {
  59. font-size: 1.714rem;
  60. }
  61. h3 {
  62. font-size: 1.28rem;
  63. }
  64. h4 {
  65. font-size: 1.071rem;
  66. }
  67. h5 {
  68. font-size: 1rem;
  69. }
  70. /*******************************
  71. Text
  72. *******************************/
  73. p {
  74. margin: 0em 0em 1em;
  75. line-height: 1.33;
  76. }
  77. p:first-child {
  78. margin-top: 0em;
  79. }
  80. p:last-child {
  81. margin-bottom: 0em;
  82. }
  83. /*-------------------
  84. Links
  85. --------------------*/
  86. a {
  87. color: #009fda;
  88. text-decoration: none;
  89. }
  90. a:hover {
  91. color: #00b2f3;
  92. }
  93. /*******************************
  94. Highlighting
  95. *******************************/
  96. ::-webkit-selection {
  97. background-color: rgba(255, 255, 160, 0.4);
  98. color: rgba(0, 0, 0, 0.8);
  99. }
  100. ::-moz-selection {
  101. background-color: rgba(255, 255, 160, 0.4);
  102. color: rgba(0, 0, 0, 0.8);
  103. }
  104. ::selection {
  105. background-color: rgba(255, 255, 160, 0.4);
  106. color: rgba(0, 0, 0, 0.8);
  107. }
  108. /*******************************
  109. Global Overrides
  110. *******************************/
  111. /*******************************
  112. Site Overrides
  113. *******************************/