style.less 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. body {
  2. .page-header {
  3. background: url("/images/header.png");
  4. margin-top: 0;
  5. border-bottom: 2px solid darken(#08c, 20%);
  6. .navbar.navbar-default {
  7. margin: 0;
  8. background: white;
  9. border-radius: 0;
  10. border-top: 0 none;
  11. box-shadow:0 0 6px #333;
  12. }
  13. .content {
  14. width: 900px;
  15. margin: auto;
  16. background: url("/images/logo.png") center left no-repeat;
  17. h1 {
  18. font-weight: bold;
  19. margin-left: 200px;
  20. padding: 30px;
  21. text-align: left;
  22. color: white;
  23. font-size: 60px;
  24. line-height: 60px;
  25. small {
  26. color: #eee;
  27. font-size: 42px;
  28. }
  29. .tiny {
  30. color: #eee;
  31. font-size: 22px;
  32. }
  33. img {
  34. margin: 20px;
  35. }
  36. }
  37. }
  38. }
  39. .container {
  40. max-width: 960px;
  41. &.amber-main {
  42. margin-bottom: 50px;
  43. }
  44. h2 {
  45. font-weight: bold;
  46. border-bottom: 1px solid #ccc;
  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. border-bottom: 1px solid #999;
  58. }
  59. p {
  60. &.note {
  61. background: #FFFFDD;
  62. padding: 5px 10px;
  63. border: 1px solid #BBBB7A;
  64. }
  65. }
  66. .nav {
  67. &.amber-nav {
  68. background: #eee;
  69. border-radius: 10px;
  70. padding: 10px 0;
  71. margin-top: 20px;
  72. a {
  73. padding: 5px 20px;
  74. color: #444;
  75. border-right: 1px solid transparent;
  76. &:hover {
  77. background: #ddd;
  78. }
  79. &.active {
  80. border-right: 1px solid darken(#08c, 20%);
  81. font-weight: bold;
  82. color: darken(#08c, 20%);
  83. }
  84. }
  85. .nav {
  86. a {
  87. padding-left: 40px;
  88. }
  89. }
  90. }
  91. }
  92. .next-section {
  93. margin-top: 20px;
  94. text-align: right;
  95. }
  96. }
  97. #footer {
  98. text-align: center;
  99. .container {
  100. border-top: 1px solid #ccc;
  101. }
  102. }
  103. }