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.

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