pen-typography.css 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218
  1. h1,
  2. h2,
  3. h3,
  4. h4,
  5. h5 {
  6. font-family: "robotolight", Arial, Helvetica, Sans-serif;
  7. font-weight: normal;
  8. }
  9. #main h3,
  10. #main h4,
  11. #main h5 {
  12. font-family: "robotoblack", Arial, Helvetica, Sans-serif;
  13. font-weight: normal;
  14. }
  15. h2:first-child {
  16. margin-top: 0;
  17. }
  18. #main abbr[title] {
  19. border-bottom: none !important;
  20. text-decoration: none !important;
  21. }
  22. #main article dt {
  23. padding: 1em 0;
  24. }
  25. #main article dd {
  26. border-left: 5px solid #aaa;
  27. border-left-color: rgba(0,0,0,0.2);
  28. margin: 0 1.5em 1.5em 0;
  29. padding: 0 0 0 1em;
  30. }
  31. #main article pre {
  32. margin: 0 0 1em 0;
  33. }
  34. #main article abbr {
  35. background: rgba(120,120,120,0.3);
  36. border: 0 none;
  37. border-radius: 5px;
  38. padding-left: 0.5em;
  39. padding-right: 0.5em;
  40. }
  41. #main article ul,
  42. #main article ol {
  43. margin: 1em 0;
  44. padding: 0 0 0 2em;
  45. }
  46. #main article ul ol,
  47. #main article ul ul,
  48. #main article ol ul,
  49. #main article ol ol {
  50. padding: 0 0 0 1em;
  51. }
  52. #main article blockquote {
  53. background: rgba(200,200,200,0.1);
  54. border: 1px solid rgba(200,200,200,0.2);
  55. float: left;
  56. font-family: "robotolight_italic", Arial, Helvetica, Sans-serif;
  57. font-size: 1.286em;
  58. font-weight: normal;
  59. margin: 1em 0;
  60. overflow: hidden;
  61. padding: 1em;
  62. position: relative;
  63. width: 100%;
  64. }
  65. body.pen_round_corners #main article blockquote {
  66. border-radius: 5px;
  67. }
  68. #main article blockquote p {
  69. margin-bottom: 0.5em;
  70. position: relative;
  71. z-index: 2;
  72. }
  73. #main article blockquote p:first-child:last-child {
  74. margin: 0;
  75. }
  76. #main article blockquote:before {
  77. bottom: 0;
  78. color: rgba(200,200,200,0.25);
  79. content: "\f10e";
  80. font-family: "FontAwesome";
  81. font-size: 2em;
  82. font-weight: normal;
  83. position: absolute;
  84. right: 0.5em;
  85. text-shadow: none;
  86. z-index: 1;
  87. }
  88. #main article blockquote footer {
  89. font-size: smaller;
  90. }
  91. #main article pre,
  92. #main article code {
  93. background: #333;
  94. color: #eee;
  95. }
  96. #main article pre {
  97. border: 1px solid #333;
  98. border-left-color: #000;
  99. border-top-color: #000;
  100. box-shadow: 2px 2px 3px rgba(0,0,0,0.5) inset, 1px 1px 0 rgba(255,255,255,0.15) inset;
  101. display: block;
  102. float: left;
  103. margin: 0 0 1em;
  104. padding: 1em;
  105. text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
  106. width: 100%;
  107. }
  108. #main article code {
  109. display: inline-block;
  110. font-family: "Fira Code", Consolas, "Source Code Pro", "Courier New", Courier;
  111. font-size: 0.857em;
  112. font-weight: 400;
  113. margin: 0;
  114. padding: 0;
  115. position: relative;
  116. text-shadow: 1px 1px 1px rgba(0,0,0,0.9);
  117. }
  118. #main article p > code {
  119. padding: 1px 0.5em;
  120. }
  121. body.pen_round_corners #main article p > code {
  122. border-radius: 3px;
  123. }
  124. #main article pre code {
  125. background: transparent;
  126. display: block;
  127. }
  128. #main article .syntaxhighlighter code {
  129. text-shadow: none;
  130. }
  131. #primary article table {
  132. background: #fff;
  133. border-collapse: collapse;
  134. box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  135. }
  136. #primary article table caption {
  137. font-weight: bold;
  138. padding: 1em 0;
  139. text-align: left;
  140. }
  141. #primary article table th,
  142. #primary article table td {
  143. background: #f7f7f7;
  144. border: 1px solid #ddd;
  145. cursor: default;
  146. padding: 0.5em 1em;
  147. }
  148. #primary article table th {
  149. background: #fff;
  150. color: #777;
  151. font-weight: bold;
  152. text-align: left;
  153. }
  154. #primary article table td {
  155. color: #555;
  156. text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
  157. transition: background-color .3s, color .3s;
  158. }
  159. #primary article table tr:nth-child(2n+1) td {
  160. background: #f0f0f0;
  161. }
  162. #primary article table tr:hover td {
  163. background: #feffee;
  164. color: #000;
  165. }
  166. body,
  167. input,
  168. option,
  169. select,
  170. textarea {
  171. font-family: "robotoregular", Arial, Helvetica, Sans-serif;
  172. }
  173. .pen_message a,
  174. a.more-link,
  175. #page .pen_jump_menu ul a,
  176. #page .pen_jump_menu h4 span,
  177. #main .sticky .entry-content {
  178. font-family: "robotobold", Arial, Helvetica, Sans-serif;
  179. font-weight: normal;
  180. }
  181. #pen_footer .pen_footer_inner .pen_phone a {
  182. font-size: 1.286em;
  183. }
  184. #page .widget-title,
  185. #pen_footer .pen_footer_inner .pen_phone a {
  186. font-family: "roboto_slabregular", Arial, Helvetica, Sans-serif;
  187. }
  188. .archive-description {
  189. font-family: "robotolight", Arial, Helvetica, Sans-serif;
  190. }
  191. #main .pen_options_overview h3 {
  192. font-family: "robotomedium", Arial, Helvetica, Sans-serif;
  193. }
  194. #main .pen_options_overview table th,
  195. #main .pen_options_overview table td {
  196. font-family: "robotobold", Arial, Helvetica, Sans-serif;
  197. font-size: 0.857em;
  198. font-weight: normal;
  199. }
  200. #main .entry-footer .tags-links a {
  201. font-family: "robotoregular", Arial, Helvetica, Sans-serif;
  202. }
  203. #comments .no-comments,
  204. #comments .comment-awaiting-moderation {
  205. font-family: "robotobold", Arial, Helvetica, Sans-serif;
  206. }
  207. #respond h3 {
  208. font-family: "roboto_slabbold", Arial, Helvetica, Sans-serif;
  209. }
  210. #pen_page .pen_preset_thumbnails.pen_color .pen_thumbnail_wrapper span span {
  211. font-family: "roboto_condensedbold", Arial, Helvetica, Sans-serif;
  212. }
  213. #content .sidebar .widget a {
  214. font-family: "robotomedium", Arial, Helvetica, Sans-serif;
  215. }
  216. #page .widget-area .calendar_wrap caption {
  217. font-family: "roboto_slablight", Arial, Helvetica, Sans-serif;
  218. }