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.

209 lines
3.4 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. }
  92. /* new posts */
  93. #syndication-container ul {
  94. list-style-type: none;
  95. margin: 0;
  96. padding: 10px;
  97. }
  98. #syndication-container li {
  99. padding: 0;
  100. margin-bottom: 6px;
  101. }
  102. #syndication-container button {
  103. max-width: 240px;
  104. text-shadow: none;
  105. }
  106. #syndication-container button img {
  107. float: left;
  108. margin-left: 10px;
  109. }
  110. #last_response_date {
  111. font-size: 80%;
  112. font-weight: normal;
  113. }
  114. #btn_post {
  115. margin-bottom: 10px;
  116. }
  117. @media all and (max-width: 480px) {
  118. #note_location_img_wide {
  119. display: none;
  120. }
  121. #note_location_img_small {
  122. display: block;
  123. }
  124. }
  125. @media all and (min-width: 480px) {
  126. #note_location_img_wide {
  127. display: block;
  128. }
  129. #note_location_img_small {
  130. display: none;
  131. }
  132. }
  133. .img-visible {
  134. -webkit-border-bottom-right-radius: 0;
  135. -webkit-border-bottom-left-radius: 0;
  136. -moz-border-radius-bottomright: 0;
  137. -moz-border-radius-bottomleft: 0;
  138. border-bottom-right-radius: 0;
  139. border-bottom-left-radius: 0;
  140. }
  141. #note_location_img img {
  142. margin-top: -1px;
  143. border: 1px solid #ccc;
  144. -webkit-border-bottom-right-radius: 4px;
  145. -webkit-border-bottom-left-radius: 4px;
  146. -moz-border-radius-bottomright: 4px;
  147. -moz-border-radius-bottomleft: 4px;
  148. border-bottom-right-radius: 4px;
  149. border-bottom-left-radius: 4px;
  150. }
  151. .uploadBtn {
  152. position: relative;
  153. overflow: hidden;
  154. margin: 10px;
  155. }
  156. .uploadBtn input {
  157. position: absolute;
  158. top: 0;
  159. right: 0;
  160. margin: 0;
  161. padding: 0;
  162. font-size: 20px;
  163. cursor: pointer;
  164. opacity: 0;
  165. filter: alpha(opacity=0);
  166. }
  167. .callout {
  168. border-left: 4px #5bc0de solid;
  169. background-color: #f4f8fa;
  170. padding: 20px;
  171. margin-top: 10px;
  172. }
  173. .callout table {
  174. margin-bottom: 0;
  175. }