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.

108 lines
1.7 KiB

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://beta.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. Text
  41. *******************************/
  42. h1,
  43. h2,
  44. h3,
  45. h4,
  46. h5 {
  47. margin: 1em 0em 1rem;
  48. padding: 0em;
  49. }
  50. p {
  51. margin: 0em 0em 1em;
  52. }
  53. p:first-child {
  54. margin-top: 0em;
  55. }
  56. p:last-child {
  57. margin-bottom: 0em;
  58. }
  59. /*-------------------
  60. Links
  61. --------------------*/
  62. a {
  63. color: #009fda;
  64. text-decoration: none;
  65. }
  66. a:hover {
  67. color: #00b2f3;
  68. }
  69. /*******************************
  70. Highlighting
  71. *******************************/
  72. ::-webkit-selection {
  73. background-color: rgba(255, 255, 160, 0.4);
  74. color: rgba(0, 0, 0, 0.8);
  75. }
  76. ::-moz-selection {
  77. background-color: rgba(255, 255, 160, 0.4);
  78. color: rgba(0, 0, 0, 0.8);
  79. }
  80. ::selection {
  81. background-color: rgba(255, 255, 160, 0.4);
  82. color: rgba(0, 0, 0, 0.8);
  83. }
  84. /*******************************
  85. Global Overrides
  86. *******************************/
  87. /*******************************
  88. Site Overrides
  89. *******************************/