A new Riff-radio.org site with a static approach.

theme.css 3.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. #container {
  2. width: 960px;
  3. margin: 0 auto;
  4. }
  5. #contentcolumn {
  6. max-width: 760px;
  7. }
  8. #q {
  9. width: 150px;
  10. }
  11. img {
  12. max-width: 90%;
  13. }
  14. .postbox {
  15. border-bottom: 2px solid darkgrey;
  16. margin-bottom: 12px;
  17. }
  18. .titlebox {
  19. text-align: right;
  20. }
  21. #addthisbox {margin-bottom: 12px;}
  22. td.label {
  23. /* Issue #290 */
  24. background-color: inherit;
  25. }
  26. .footnote-reference {
  27. /* Issue 290 */
  28. vertical-align: super;
  29. font-size: xx-small;
  30. }
  31. .caption {
  32. /* Issue 292 */
  33. text-align: center;
  34. padding-top: 1em;
  35. }
  36. div.figure > img,
  37. div.figure > a > img {
  38. /* Issue 292 */
  39. display: block;
  40. margin-left: auto;
  41. margin-right: auto;
  42. }
  43. blockquote p, blockquote {
  44. font-size: 17.5px;
  45. font-weight: 300;
  46. line-height: 1.25;
  47. }
  48. ul.bricks > li {
  49. display: inline;
  50. background-color: lightblue;
  51. padding: 8px;
  52. border-radius: 5px;
  53. line-height: 3;
  54. white-space:nowrap;
  55. margin: 3px;
  56. }
  57. .at300b, .stMainServices, .stButton, .stButton_gradient {
  58. box-sizing: content-box;
  59. }
  60. pre, pre code {
  61. white-space: pre;
  62. word-wrap: normal;
  63. overflow: auto;
  64. }
  65. article.post-micro {
  66. font-family: Georgia, 'Times New Roman', Times, serif;
  67. font-size: 1.5em;
  68. }
  69. .image-block {
  70. display: inline-block;
  71. }
  72. .flowr_row {
  73. width: 100%;
  74. }
  75. .tags {
  76. padding-left: 0;
  77. margin-left: -5px;
  78. list-style: none;
  79. text-align: center;
  80. }
  81. .tags > li {
  82. display: inline-block;
  83. min-width: 10px;
  84. padding: 3px 7px;
  85. font-size: 12px;
  86. font-weight: bold;
  87. line-height: 1;
  88. color: #fff;
  89. text-align: center;
  90. white-space: nowrap;
  91. vertical-align: baseline;
  92. background-color: #999;
  93. border-radius: 10px;
  94. }
  95. .tags > li a {
  96. color: #fff;
  97. }
  98. .metadata p:before,
  99. .postlist .listdate:after,
  100. .translationslist p:before {
  101. content: " — ";
  102. }
  103. .metadata p:first-of-type:before,
  104. .translationslist p:first-of-type:before {
  105. content: "";
  106. }
  107. .metadata p,
  108. .translationslist p {
  109. display: inline;
  110. }
  111. .posttranslations h3, .translationslist h3 {
  112. display: inline;
  113. font-size: 1em;
  114. font-weight: bold;
  115. }
  116. .posttranslations h3:last-child, .translationslist h3:last-child {
  117. display: none;
  118. }
  119. .entry-content {
  120. margin-top: 1em;
  121. }
  122. .navbar-brand {
  123. padding: 0 15px;
  124. }
  125. .navbar-brand #blog-title {
  126. padding: 15px 0;
  127. display: inline-block;
  128. }
  129. .navbar-brand #logo {
  130. max-width: 100%;
  131. }
  132. .navbar-brand>img {
  133. display: inline;
  134. }
  135. .row {
  136. margin: 0;
  137. }
  138. /* for alignment with Bootstrap's .entry-content styling */
  139. .entry-summary {
  140. margin-top: 1em;
  141. }
  142. /* Custom page footer */
  143. #footer {
  144. padding-top: 19px;
  145. color: #777;
  146. border-top: 1px solid #e5e5e5;
  147. }
  148. .codetable {
  149. table-layout: fixed;
  150. }
  151. .codetable pre {
  152. overflow-x: scroll;
  153. }
  154. /* hat tip bootstrap/html5 boilerplate */
  155. @media print {
  156. *, *:before, *:after {
  157. font-family: Garamond, Junicode, serif;
  158. }
  159. body {
  160. font-size: 12pt;
  161. text-align: justify;
  162. }
  163. article .entry-title a[href]:after,
  164. article .metadata a[href]:after,
  165. article .tags a[href]:after {
  166. content: "";
  167. }
  168. article .metadata .sourceline {
  169. display: none;
  170. }
  171. article .metadata .linkline a[href]:after {
  172. content: " (" attr(href) ")";
  173. }
  174. .navbar {
  175. display: none;
  176. }
  177. }