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.

111 lines
1.6 KiB

  1. body {
  2. padding-top: 10px;
  3. }
  4. .header {
  5. font-family:; "Helvetica Neue",Helvetica,Arial,sans-serif;
  6. font-size: 22px;
  7. font-weight: 500;
  8. color: #888;
  9. border-bottom: 6px #ddd solid;
  10. }
  11. .narrow {
  12. max-width: 700px;
  13. margin-right: auto;
  14. margin-left: auto;
  15. }
  16. .footer {
  17. padding: 0;
  18. margin-top: 20px;
  19. text-align: center;
  20. color: #999;
  21. background-color: #f9f9f9;
  22. border-top: 1px #e5e5e5 solid;
  23. }
  24. .footer .nav {
  25. max-width: 700px;
  26. margin-right: auto;
  27. margin-left: auto;
  28. }
  29. .footer .credits {
  30. padding: 20px;
  31. font-size: 12px;
  32. }
  33. .jumbotron .tagline {
  34. font-size: 23px;
  35. }
  36. .jumbotron p {
  37. font-size: 18px;
  38. }
  39. /**
  40. * Bootstrap callouts
  41. */
  42. /* Base styles (regardless of theme) */
  43. .bs-callout {
  44. margin: 20px 0;
  45. padding: 15px 30px 15px 15px;
  46. border-left: 5px solid #eee;
  47. }
  48. .bs-callout h4 {
  49. margin-top: 0;
  50. }
  51. .bs-callout p:last-child {
  52. margin-bottom: 0;
  53. }
  54. .bs-callout code,
  55. .bs-callout .highlight {
  56. background-color: #fff;
  57. }
  58. /* Themes for different contexts */
  59. .bs-callout-danger {
  60. background-color: #fcf2f2;
  61. border-color: #dFb5b4;
  62. }
  63. .bs-callout-warning {
  64. background-color: #fefbed;
  65. border-color: #f1e7bc;
  66. }
  67. .bs-callout-info {
  68. background-color: #f0f7fd;
  69. border-color: #d0e3f0;
  70. }
  71. .bs-callout-success {
  72. background-color: #dff0d8;
  73. border-color: #b5dca5;
  74. }
  75. .bs-callout-danger h4 {
  76. color: #B94A48;
  77. }
  78. .bs-callout-warning h4 {
  79. color: #C09853;
  80. }
  81. .bs-callout-info h4 {
  82. color: #3A87AD;
  83. }
  84. .bs-callout-success h4 {
  85. color: #3c763d;
  86. }
  87. .bs-callout.pre {
  88. font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
  89. word-break: break-all;
  90. word-wrap: break-word;
  91. }