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.

134 lines
2.1 KiB

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
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';
  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. line-height: 1.33em;
  48. margin: -webkit-calc(2rem - 0.165em ) 0em 1rem;
  49. margin: calc(2rem - 0.165em ) 0em 1rem;
  50. font-weight: bold;
  51. padding: 0em;
  52. }
  53. h1 {
  54. min-height: 1rem;
  55. font-size: 2rem;
  56. }
  57. h2 {
  58. font-size: 1.714rem;
  59. }
  60. h3 {
  61. font-size: 1.28rem;
  62. }
  63. h4 {
  64. font-size: 1.071rem;
  65. }
  66. h5 {
  67. font-size: 1rem;
  68. }
  69. /*******************************
  70. Text
  71. *******************************/
  72. p {
  73. margin: 0em 0em 1em;
  74. line-height: 1.33;
  75. }
  76. p:first-child {
  77. margin-top: 0em;
  78. }
  79. p:last-child {
  80. margin-bottom: 0em;
  81. }
  82. /*-------------------
  83. Links
  84. --------------------*/
  85. a {
  86. color: #009fda;
  87. text-decoration: none;
  88. }
  89. a:hover {
  90. color: #00b2f3;
  91. }
  92. /*******************************
  93. Highlighting
  94. *******************************/
  95. ::-webkit-selection {
  96. background-color: rgba(255, 255, 160, 0.4);
  97. color: rgba(0, 0, 0, 0.8);
  98. }
  99. ::-moz-selection {
  100. background-color: rgba(255, 255, 160, 0.4);
  101. color: rgba(0, 0, 0, 0.8);
  102. }
  103. ::selection {
  104. background-color: rgba(255, 255, 160, 0.4);
  105. color: rgba(0, 0, 0, 0.8);
  106. }
  107. /*******************************
  108. Global Overrides
  109. *******************************/
  110. /*******************************
  111. Site Overrides
  112. *******************************/