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.

144 lines
2.3 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. .subscription-status {
  59. -webkit-border-radius: 4px;
  60. -moz-border-radius: 4px;
  61. border-radius: 4px;
  62. border: 1px #ccc solid;
  63. }
  64. /**
  65. * Bootstrap callouts
  66. */
  67. /* Base styles (regardless of theme) */
  68. .bs-callout {
  69. margin: 20px 0;
  70. padding: 15px 30px 15px 15px;
  71. border-left: 5px solid #eee;
  72. }
  73. .bs-callout h4 {
  74. margin-top: 0;
  75. }
  76. .bs-callout p:last-child {
  77. margin-bottom: 0;
  78. }
  79. .bs-callout code,
  80. .bs-callout .highlight {
  81. background-color: #fff;
  82. }
  83. /* Themes for different contexts */
  84. .bs-callout-danger {
  85. background-color: #fcf2f2;
  86. border-color: #dFb5b4;
  87. }
  88. .bs-callout-warning {
  89. background-color: #fefbed;
  90. border-color: #f1e7bc;
  91. }
  92. .bs-callout-info {
  93. background-color: #f0f7fd;
  94. border-color: #d0e3f0;
  95. }
  96. .bs-callout-success {
  97. background-color: #dff0d8;
  98. border-color: #b5dca5;
  99. }
  100. .bs-callout-danger h4 {
  101. color: #B94A48;
  102. }
  103. .bs-callout-warning h4 {
  104. color: #C09853;
  105. }
  106. .bs-callout-info h4 {
  107. color: #3A87AD;
  108. }
  109. .bs-callout-success h4 {
  110. color: #3c763d;
  111. }
  112. .bs-callout.pre {
  113. font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
  114. word-break: break-all;
  115. word-wrap: break-word;
  116. }
  117. @-webkit-keyframes pulsate {
  118. 0% {-webkit-transform: scale(0.9, 0.9); opacity: 1.0;}
  119. 50% {opacity: 0.0;}
  120. 100% {-webkit-transform: scale(1.1, 1.1); opacity: 1.0;}
  121. }