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.

246 lines
4.2 KiB

  1. @media only screen and (max-width: 1280px) {
  2. @-ms-viewport {
  3. width: 800px;
  4. }
  5. }
  6. @media only screen and (max-width: 768px) {
  7. @-ms-viewport {
  8. width: 600px;
  9. }
  10. }
  11. html, body {
  12. height: 100%;
  13. }
  14. body {
  15. font: 1.8em/1.5 'Century Gothic', Verdana, Geneva, 'DejaVu Sans', sans-serif;
  16. margin: 0;
  17. }
  18. img, video, iframe {
  19. max-width: 100%;
  20. }
  21. a {
  22. color: #3277b3;
  23. }
  24. .container {
  25. min-height: 100%;
  26. padding-bottom: 35px;
  27. }
  28. .container > div > header {
  29. border: none;
  30. text-align: center;
  31. margin: 0 0 3em 0;
  32. }
  33. .container > div > header a {
  34. font-size: 4em;
  35. color: #000;
  36. }
  37. div[role=main] {
  38. margin-bottom: 2em;
  39. overflow: auto;
  40. }
  41. .pager {
  42. margin-top: 2em;
  43. }
  44. input[type], button, textarea {
  45. font: inherit !important;
  46. }
  47. /*#region Post */
  48. .post header h1 {
  49. margin: 0 0 3px 0;
  50. }
  51. .post header a {
  52. color: #000;
  53. }
  54. .post header div {
  55. font-size: .75em;
  56. opacity: .8;
  57. margin-bottom: 1em;
  58. }
  59. .post header div a {
  60. margin-left: 10px;
  61. }
  62. .post header div .categories {
  63. margin: 0;
  64. padding: 10px;
  65. display: inline;
  66. }
  67. .post header div .categories a {
  68. margin: 0;
  69. }
  70. .post header div .categories li {
  71. display: inline;
  72. }
  73. .post header div .categories li:not(:first-child):not(:last-child):after {
  74. content: ", ";
  75. }
  76. .post abbr {
  77. border: none;
  78. }
  79. .post h2 {
  80. margin-bottom: 0;
  81. font-size: 1.3em;
  82. }
  83. .post h3 {
  84. margin-bottom: 0;
  85. font-size: 1.1em;
  86. }
  87. .post div[itemprop='articleBody'] {
  88. border-bottom: 1px solid #d3d3d3;
  89. padding-bottom: .5em;
  90. margin-bottom: 2em;
  91. -ms-text-size-adjust: 150%;
  92. }
  93. .post p {
  94. padding: .2em 0;
  95. }
  96. /*#endregion */
  97. /*#region Comments */
  98. #comments article {
  99. position: relative;
  100. max-height: 9999px;
  101. overflow: hidden;
  102. -webkit-transition: height .5s ease-in-out;
  103. -moz-transition: height .5s ease-in-out;
  104. -o-transition: height .5s ease-in-out;
  105. transition: height .5s ease-in-out;
  106. }
  107. #comments article div {
  108. padding-left: 70px;
  109. }
  110. #comments article div p {
  111. border: 1px solid #d3d3d3;
  112. border-radius: 5px;
  113. padding: 7px;
  114. position: relative;
  115. }
  116. #comments article div p:before {
  117. content: "";
  118. position: absolute;
  119. top: 10px;
  120. left: -10px;
  121. border-style: solid;
  122. border-width: 9px 9px 9px 0;
  123. border-color: transparent #d3d3d3;
  124. }
  125. #comments article div p:after {
  126. content: "";
  127. position: absolute;
  128. top: 10px;
  129. left: -9px;
  130. border-style: solid;
  131. border-width: 9px 9px 9px 0;
  132. border-color: transparent #ffffff;
  133. }
  134. #comments article.self div p {
  135. background: #f7f7f7;
  136. }
  137. #comments article.self div p:after {
  138. border-color: transparent #f7f7f7;
  139. }
  140. #comments article [itemprop='commentText'] {
  141. margin: 0;
  142. }
  143. #comments article img {
  144. border-radius: 5px;
  145. position: absolute;
  146. top: 19px;
  147. }
  148. #comments article [itemprop='commentTime'] {
  149. display: block;
  150. text-align: right;
  151. font-size: .7em;
  152. }
  153. #comments article [itemprop='creator'] {
  154. font-size: .8em;
  155. margin-left: 7px;
  156. }
  157. #comments article [itemprop='approvalWarning'] {
  158. margin-left: 70px;
  159. font-size: 0.6em;
  160. background-color: rgba(255, 255, 0, 0.50);
  161. padding: 5px;
  162. }
  163. /*#endregion */
  164. /*#region Comment form */
  165. #commentform {
  166. margin-top: 2em;
  167. }
  168. #status {
  169. margin-left: 1em;
  170. }
  171. /*#endregion */
  172. /*#region Footer */
  173. footer {
  174. background-color: #181818;
  175. color: #fff;
  176. font-size: .85em;
  177. padding: 5px;
  178. clear: both;
  179. position: relative;
  180. margin: -35px 0 0 0;
  181. height: 35px;
  182. }
  183. footer p {
  184. padding: 1em 0;
  185. text-align: center;
  186. }
  187. footer a {
  188. color: #a9d2e1;
  189. }
  190. /*#endregion */
  191. .slideClone img {
  192. float: left;
  193. }
  194. .excerpt {
  195. font-size: 14px;
  196. }