main.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. body {
  2. font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  3. padding-bottom: 50px;
  4. }
  5. .bs-docs-masthead,
  6. .bs-docs-header {
  7. color: #cdbfe3;
  8. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  9. background-color: #6f5499;
  10. background-image: -webkit-gradient(linear, left top, left bottom, from(#563d7c), to(#6f5499));
  11. background-image: -webkit-linear-gradient(top, #563d7c 0, #6f5499 100%);
  12. background-image: -o-linear-gradient(top, #563d7c 0, #6f5499 100%);
  13. background-image: linear-gradient(to bottom, #563d7c 0, #6f5499 100%);
  14. filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#563d7c', endColorstr='#6F5499', GradientType=0);
  15. background-repeat: repeat-x;
  16. }
  17. .bs-docs-masthead h1 {
  18. font-weight: 500;
  19. }
  20. .page-header {
  21. text-align: left;
  22. }
  23. #github {
  24. display: none;
  25. position: fixed;
  26. width: 150px;
  27. height: 150px;
  28. top: 0;
  29. right: 0;
  30. z-index: 2000;
  31. }
  32. .bottom {
  33. border-top: 1px solid #eee;
  34. margin-top: 40px;
  35. padding-top: 20px;
  36. padding-bottom: 20px;
  37. text-align: center;
  38. }
  39. .hljs {
  40. background-color: transparent;
  41. }
  42. @media (min-width: 768px) {
  43. #github {
  44. display: block;
  45. }
  46. }