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.

148 lines
2.4 KiB

9 years ago
9 years ago
  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. max-width: 700px;
  27. margin-right: auto;
  28. margin-left: auto;
  29. padding: 10px;
  30. }
  31. .footer {
  32. padding: 0;
  33. margin-top: 20px;
  34. text-align: center;
  35. color: #999;
  36. background-color: #f9f9f9;
  37. border-top: 1px #e5e5e5 solid;
  38. position: fixed;
  39. bottom: 0;
  40. width: 100%;
  41. }
  42. .footer .nav {
  43. max-width: 700px;
  44. margin-right: auto;
  45. margin-left: auto;
  46. }
  47. .footer .credits {
  48. padding: 10px;
  49. font-size: 12px;
  50. }
  51. .jumbotron .tagline {
  52. font-size: 23px;
  53. }
  54. .jumbotron p {
  55. font-size: 18px;
  56. }
  57. .subscription-status, .feed-status {
  58. background: #fff;
  59. -webkit-border-radius: 4px;
  60. -moz-border-radius: 4px;
  61. border-radius: 4px;
  62. border: 1px #ccc solid;
  63. }
  64. .subscription-status pre, .feed-status pre {
  65. max-width: 500px;
  66. overflow: pre-wrap;
  67. }
  68. /**
  69. * Bootstrap callouts
  70. */
  71. /* Base styles (regardless of theme) */
  72. .bs-callout {
  73. margin: 20px 0;
  74. padding: 15px 30px 15px 15px;
  75. border-left: 5px solid #eee;
  76. }
  77. .bs-callout h4 {
  78. margin-top: 0;
  79. }
  80. .bs-callout p:last-child {
  81. margin-bottom: 0;
  82. }
  83. .bs-callout code,
  84. .bs-callout .highlight {
  85. background-color: #fff;
  86. }
  87. /* Themes for different contexts */
  88. .bs-callout-danger {
  89. background-color: #fcf2f2;
  90. border-color: #dFb5b4;
  91. }
  92. .bs-callout-warning {
  93. background-color: #fefbed;
  94. border-color: #f1e7bc;
  95. }
  96. .bs-callout-info {
  97. background-color: #f0f7fd;
  98. border-color: #d0e3f0;
  99. }
  100. .bs-callout-success {
  101. background-color: #dff0d8;
  102. border-color: #b5dca5;
  103. }
  104. .bs-callout-danger h4 {
  105. color: #B94A48;
  106. }
  107. .bs-callout-warning h4 {
  108. color: #C09853;
  109. }
  110. .bs-callout-info h4 {
  111. color: #3A87AD;
  112. }
  113. .bs-callout-success h4 {
  114. color: #3c763d;
  115. }
  116. .bs-callout.pre {
  117. font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
  118. word-break: break-all;
  119. word-wrap: break-word;
  120. }
  121. @-webkit-keyframes pulsate {
  122. 0% {-webkit-transform: scale(0.9, 0.9); opacity: 1.0;}
  123. 50% {opacity: 0.0;}
  124. 100% {-webkit-transform: scale(1.1, 1.1); opacity: 1.0;}
  125. }