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.

78 lines
1.1 KiB

  1. body {
  2. padding-top: 70px;
  3. }
  4. .footer {
  5. padding: 40px;
  6. margin-top: 20px;
  7. text-align: center;
  8. color: #999;
  9. background-color: #f9f9f9;
  10. border-top: 1px #e5e5e5 solid;
  11. }
  12. /**
  13. * Bootstrap callouts
  14. */
  15. /* Base styles (regardless of theme) */
  16. .bs-callout {
  17. margin: 20px 0;
  18. padding: 15px 30px 15px 15px;
  19. border-left: 5px solid #eee;
  20. }
  21. .bs-callout h4 {
  22. margin-top: 0;
  23. }
  24. .bs-callout p:last-child {
  25. margin-bottom: 0;
  26. }
  27. .bs-callout code,
  28. .bs-callout .highlight {
  29. background-color: #fff;
  30. }
  31. /* Themes for different contexts */
  32. .bs-callout-danger {
  33. background-color: #fcf2f2;
  34. border-color: #dFb5b4;
  35. }
  36. .bs-callout-warning {
  37. background-color: #fefbed;
  38. border-color: #f1e7bc;
  39. }
  40. .bs-callout-info {
  41. background-color: #f0f7fd;
  42. border-color: #d0e3f0;
  43. }
  44. .bs-callout-success {
  45. background-color: #dff0d8;
  46. border-color: #b5dca5;
  47. }
  48. .bs-callout-danger h4 {
  49. color: #B94A48;
  50. }
  51. .bs-callout-warning h4 {
  52. color: #C09853;
  53. }
  54. .bs-callout-info h4 {
  55. color: #3A87AD;
  56. }
  57. .bs-callout-success h4 {
  58. color: #3c763d;
  59. }
  60. .bs-callout.pre {
  61. font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
  62. word-break: break-all;
  63. word-wrap: break-word;
  64. }