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.

106 lines
1.7 KiB

10 years ago
  1. /*
  2. * # Semantic UI
  3. * git://github.com/Semantic-Org/Semantic-UI.git
  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. font-smoothing: antialiased;
  25. }
  26. body {
  27. margin: 0px;
  28. padding: 0px;
  29. min-width: 278px;
  30. background: #f7f7f7;
  31. font-family: 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
  32. font-size: 14px;
  33. line-height: 1.33;
  34. color: rgba(0, 0, 0, 0.8);
  35. overflow-x: hidden;
  36. }
  37. /*******************************
  38. Text
  39. *******************************/
  40. h1,
  41. h2,
  42. h3,
  43. h4,
  44. h5 {
  45. margin: 1em 0em 1rem;
  46. padding: 0em;
  47. }
  48. p {
  49. margin: 0em 0em 1em;
  50. }
  51. p:first-child {
  52. margin-top: 0em;
  53. }
  54. p:last-child {
  55. margin-bottom: 0em;
  56. }
  57. /*-------------------
  58. Links
  59. --------------------*/
  60. a {
  61. color: #009fda;
  62. text-decoration: none;
  63. }
  64. a:hover {
  65. color: #00b2f3;
  66. }
  67. /*******************************
  68. Highlighting
  69. *******************************/
  70. ::-webkit-selection {
  71. background-color: rgba(255, 255, 160, 0.4);
  72. color: rgba(0, 0, 0, 0.8);
  73. }
  74. ::-moz-selection {
  75. background-color: rgba(255, 255, 160, 0.4);
  76. color: rgba(0, 0, 0, 0.8);
  77. }
  78. ::selection {
  79. background-color: rgba(255, 255, 160, 0.4);
  80. color: rgba(0, 0, 0, 0.8);
  81. }
  82. /*******************************
  83. Global Overrides
  84. *******************************/
  85. /*******************************
  86. Site Overrides
  87. *******************************/