style.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. body {
  2. background-color: #fafafa !important;
  3. h1, h2, h3, h4, h5, h6, p, div, span {
  4. font-family: "Open Sans", Helvetica, Arial, sans-serif;
  5. }
  6. .page-header {
  7. background: url("/images/header.png");
  8. margin-top: 0;
  9. border-bottom: 2px solid darken(#08c, 20%);
  10. .navbar.navbar-default {
  11. margin: 0;
  12. background: white;
  13. border-radius: 0;
  14. border-top: 0 none;
  15. box-shadow:0 0 6px #333;
  16. }
  17. .content {
  18. width: 900px;
  19. margin: auto;
  20. background: url("/images/logo.png") center left no-repeat;
  21. h1 {
  22. font-weight: bold;
  23. margin-left: 200px;
  24. padding: 30px;
  25. text-align: left;
  26. color: white;
  27. font-size: 60px;
  28. line-height: 60px;
  29. small {
  30. color: #eee;
  31. font-size: 42px;
  32. }
  33. .tiny {
  34. color: #eee;
  35. font-size: 22px;
  36. }
  37. }
  38. }
  39. }
  40. .container {
  41. max-width: 960px;
  42. &.amber-main {
  43. margin-bottom: 50px;
  44. }
  45. h2 {
  46. font-weight: bold;
  47. padding-bottom: 20px;
  48. margin-bottom: 20px;
  49. color: #444;
  50. }
  51. h3, h4 {
  52. font-weight: bold;
  53. margin: 20px 0;
  54. }
  55. h3 {
  56. padding-bottom: 10px;
  57. }
  58. img {
  59. margin: 20px 0;
  60. max-width: 700px;
  61. }
  62. p {
  63. &.note {
  64. background: #FAFADD;
  65. padding: 10px;
  66. border-left: 6px solid #BBBB7A;
  67. margin-left: -6px;
  68. }
  69. &.warning {
  70. background: #ffDDDD;
  71. padding: 10px;
  72. border-left: 6px solid #bb9999;
  73. margin-left: -6px;
  74. }
  75. }
  76. pre {
  77. font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
  78. border-radius: 0;
  79. border: 0 none;
  80. border-left: 6px solid #ccc;
  81. margin-left: -6px;
  82. * {
  83. font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
  84. }
  85. }
  86. .nav {
  87. &.amber-nav {
  88. background: #eee;
  89. border-radius: 10px;
  90. padding: 10px 0;
  91. margin-top: 20px;
  92. a {
  93. padding: 5px 20px;
  94. color: #444;
  95. border-right: 1px solid transparent;
  96. &:hover {
  97. background: #ddd;
  98. }
  99. &.active {
  100. border-right: 1px solid darken(#08c, 20%);
  101. font-weight: bold;
  102. color: darken(#08c, 20%);
  103. }
  104. }
  105. .nav {
  106. a {
  107. padding-left: 40px;
  108. }
  109. }
  110. }
  111. }
  112. .next-section {
  113. margin-top: 20px;
  114. text-align: right;
  115. }
  116. }
  117. #footer {
  118. text-align: center;
  119. .container {
  120. border-top: 1px solid #ccc;
  121. }
  122. }
  123. }