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.

137 lines
2.2 KiB

  1. body {
  2. padding-top: 10px;
  3. background: #fff;
  4. background: url(/images/bkg.jpg) no-repeat center center fixed;
  5. -webkit-background-size: cover;
  6. -moz-background-size: cover;
  7. -o-background-size: cover;
  8. background-size: cover;
  9. padding-bottom: 40px;
  10. }
  11. body.logged-out {
  12. background: white;
  13. }
  14. .jumbotron {
  15. border: 1px #bbb solid;
  16. }
  17. .header {
  18. font-family:; "Helvetica Neue",Helvetica,Arial,sans-serif;
  19. font-size: 22px;
  20. font-weight: 500;
  21. color: #888;
  22. border-bottom: 6px #ddd solid;
  23. padding-bottom: 4px;
  24. }
  25. .narrow {
  26. background: #fff;
  27. max-width: 700px;
  28. margin-right: auto;
  29. margin-left: auto;
  30. padding: 10px;
  31. }
  32. .footer {
  33. padding: 0;
  34. margin-top: 20px;
  35. text-align: center;
  36. color: #999;
  37. background-color: #f9f9f9;
  38. border-top: 1px #e5e5e5 solid;
  39. position: fixed;
  40. bottom: 0;
  41. width: 100%;
  42. }
  43. .footer .nav {
  44. max-width: 700px;
  45. margin-right: auto;
  46. margin-left: auto;
  47. }
  48. .footer .credits {
  49. padding: 10px;
  50. font-size: 12px;
  51. }
  52. .jumbotron .tagline {
  53. font-size: 23px;
  54. }
  55. .jumbotron p {
  56. font-size: 18px;
  57. }
  58. /**
  59. * Bootstrap callouts
  60. */
  61. /* Base styles (regardless of theme) */
  62. .bs-callout {
  63. margin: 20px 0;
  64. padding: 15px 30px 15px 15px;
  65. border-left: 5px solid #eee;
  66. }
  67. .bs-callout h4 {
  68. margin-top: 0;
  69. }
  70. .bs-callout p:last-child {
  71. margin-bottom: 0;
  72. }
  73. .bs-callout code,
  74. .bs-callout .highlight {
  75. background-color: #fff;
  76. }
  77. /* Themes for different contexts */
  78. .bs-callout-danger {
  79. background-color: #fcf2f2;
  80. border-color: #dFb5b4;
  81. }
  82. .bs-callout-warning {
  83. background-color: #fefbed;
  84. border-color: #f1e7bc;
  85. }
  86. .bs-callout-info {
  87. background-color: #f0f7fd;
  88. border-color: #d0e3f0;
  89. }
  90. .bs-callout-success {
  91. background-color: #dff0d8;
  92. border-color: #b5dca5;
  93. }
  94. .bs-callout-danger h4 {
  95. color: #B94A48;
  96. }
  97. .bs-callout-warning h4 {
  98. color: #C09853;
  99. }
  100. .bs-callout-info h4 {
  101. color: #3A87AD;
  102. }
  103. .bs-callout-success h4 {
  104. color: #3c763d;
  105. }
  106. .bs-callout.pre {
  107. font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
  108. word-break: break-all;
  109. word-wrap: break-word;
  110. }
  111. @-webkit-keyframes pulsate {
  112. 0% {-webkit-transform: scale(0.9, 0.9); opacity: 1.0;}
  113. 50% {opacity: 0.0;}
  114. 100% {-webkit-transform: scale(1.1, 1.1); opacity: 1.0;}
  115. }