style.css 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  1. @import url(http://fonts.googleapis.com/css?family=Droid+Sans);
  2. article, aside, details, figcaption, figure, footer, header, hgroup, nav, section { display: block; }
  3. audio, canvas, video { display: inline-block; *display: inline; *zoom: 1; }
  4. audio:not([controls]) { display: none; }
  5. [hidden] { display: none; }
  6. html { font-size: 100%; -webkit-text-size-adjust: 100%; -ms-text-size-adjust: 100%; }
  7. html, button, input, select, textarea { font-family: sans-serif; color: #222; }
  8. body { margin: 0; font-size: 1em; line-height: 1.4; }
  9. ::-moz-selection { background: #E37B52; color: #fff; text-shadow: none; }
  10. ::selection { background: #E37B52; color: #fff; text-shadow: none; }
  11. a { color: #00e; }
  12. a:visited { color: #551a8b; }
  13. a:hover { color: #06e; }
  14. a:focus { outline: thin dotted; }
  15. a:hover, a:active { outline: 0; }
  16. abbr[title] { border-bottom: 1px dotted; }
  17. b, strong { font-weight: bold; }
  18. blockquote { margin: 1em 40px; }
  19. dfn { font-style: italic; }
  20. hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }
  21. ins { background: #ff9; color: #000; text-decoration: none; }
  22. mark { background: #ff0; color: #000; font-style: italic; font-weight: bold; }
  23. pre, code, kbd, samp { font-family: monospace, serif; _font-family: 'courier new', monospace; font-size: 1em; }
  24. pre { white-space: pre; white-space: pre-wrap; word-wrap: break-word; }
  25. q { quotes: none; }
  26. q:before, q:after { content: ""; content: none; }
  27. small { font-size: 85%; }
  28. sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline; }
  29. sup { top: -0.5em; }
  30. sub { bottom: -0.25em; }
  31. ul, ol { margin: 1em 0; padding: 0 0 0 40px; }
  32. dd { margin: 0 0 0 40px; }
  33. nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }
  34. img { border: 0; -ms-interpolation-mode: bicubic; vertical-align: middle; }
  35. svg:not(:root) { overflow: hidden; }
  36. figure { margin: 0; }
  37. form { margin: 0; }
  38. fieldset { border: 0; margin: 0; padding: 0; }
  39. label { cursor: pointer; }
  40. legend { border: 0; *margin-left: -7px; padding: 0; white-space: normal; }
  41. button, input, select, textarea { font-size: 100%; margin: 0; vertical-align: baseline; *vertical-align: middle; }
  42. button, input { line-height: normal; }
  43. button, input[type="button"], input[type="reset"], input[type="submit"] { cursor: pointer; -webkit-appearance: button; *overflow: visible; }
  44. button[disabled], input[disabled] { cursor: default; }
  45. input[type="checkbox"], input[type="radio"] { box-sizing: border-box; padding: 0; *width: 13px; *height: 13px; }
  46. input[type="search"] { -webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box; }
  47. input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button { -webkit-appearance: none; }
  48. button::-moz-focus-inner, input::-moz-focus-inner { border: 0; padding: 0; }
  49. textarea { overflow: auto; vertical-align: top; resize: vertical; }
  50. input:valid, textarea:valid { }
  51. input:invalid, textarea:invalid { background-color: #f0dddd; }
  52. table { border-collapse: collapse; border-spacing: 0; }
  53. td { vertical-align: top; }
  54. body
  55. {
  56. font-family:'Droid Sans', sans-serif;
  57. font-size:10pt;
  58. color:#555;
  59. line-height: 25px;
  60. }
  61. .wrapper
  62. {
  63. width:760px;
  64. margin:0 auto 5em auto;
  65. }
  66. .wrapper>header
  67. {
  68. border-bottom:1px solid #eee;
  69. background-image:url(../img/logoback.png);
  70. background-repeat:no-repeat;
  71. background-position:right;
  72. text-shadow:1px 1px 0px #fff;
  73. padding-top:2.5em;
  74. }
  75. .wrapper>header h1
  76. {
  77. font-size: 28pt;
  78. font-family: 'Ubuntu';
  79. margin: 0 0 10px 0;
  80. letter-spacing: 2px;
  81. }
  82. .wrapper>header h2
  83. {
  84. margin:0;
  85. color:#888;
  86. letter-spacing: 2px;
  87. }
  88. .slogan
  89. {
  90. font-size:0.8em;
  91. }
  92. .intro-text
  93. {
  94. width:480px;
  95. line-height:1.4em;
  96. }
  97. .main
  98. {
  99. overflow:hidden;
  100. }
  101. .content
  102. {
  103. width:540px;
  104. float:right;
  105. border-left:1px solid #eee;
  106. padding-left:1.5em;
  107. }
  108. .content blockquote p
  109. {
  110. background-color:#f8f8f8;
  111. padding:0.5em 1em;
  112. border-left:3px solid #E3591E;
  113. text-shadow:1px 1px 0 #fff;
  114. font-style:italic;
  115. margin:3em 0;
  116. }
  117. .content p
  118. {
  119. line-height:1.6em;
  120. margin:1.5em 0;
  121. }
  122. .content>h1 {
  123. font-size: 18pt;
  124. }
  125. .content>h2 {
  126. font-size: 14pt;
  127. margin-top:2.2em;
  128. }
  129. .content>h3 {
  130. font-size: 12pt;
  131. }
  132. .content>h4 {
  133. font-size: 10pt;
  134. }
  135. .content>h1:not(:first-child) {
  136. margin-top: 30px;
  137. }
  138. .content li
  139. {
  140. line-height:1.5em;
  141. margin-bottom:1em;
  142. }
  143. a, a:visited
  144. {
  145. color:#2972A3;
  146. text-decoration:none;
  147. }
  148. a:hover
  149. {
  150. color:#72ADD4;
  151. text-decoration:underline;
  152. }
  153. .sidebar
  154. {
  155. width:180px;
  156. float:left;
  157. font-size:0.9em;
  158. }
  159. .sidebar>ul
  160. {
  161. list-style-type:none;
  162. padding-left:1em;
  163. margin:0;
  164. padding: 0;
  165. }
  166. .sidebar>ul li:before
  167. {
  168. text-decoration:none;
  169. color:#777;
  170. margin-right:0.2em;
  171. }
  172. .sidebar>ul ul
  173. {
  174. list-style-type:none;
  175. margin:0 0 0 1.5em;
  176. padding:0;
  177. }
  178. .sidebar>ul ul>li:before
  179. {
  180. content:"\2013";
  181. margin-right:0.4em;
  182. }
  183. pre, code
  184. {
  185. font-family: Monaco, "Bitstream Vera Sans Mono", "Lucida Console", Terminal, monospace;
  186. }
  187. pre
  188. {
  189. border:1px solid #eee;
  190. padding:0.5em 1em;
  191. font-size:0.8em;
  192. background-color:#f5f5f5;
  193. text-shadow:1px 1px 0 #fff;
  194. line-height:1.7em;
  195. }
  196. code
  197. {
  198. background-color:#FFE5DB;
  199. font-size:0.8em;
  200. display:inline-block;
  201. padding:0.2em 0.4em;
  202. text-shadow:1px 1px 0 #fff;
  203. }
  204. /* Prettify Styles -------------- */
  205. .com {
  206. color: #93a1a1;
  207. }
  208. .lit {
  209. color: #195f91;
  210. }
  211. .pun, .opn, .clo {
  212. color: #93a1a1;
  213. }
  214. .fun {
  215. color: #dc322f;
  216. }
  217. .str, .atv {
  218. color: #D14;
  219. }
  220. .kwd, .linenums .tag {
  221. color: #1e347b;
  222. }
  223. .typ,
  224. .atn,
  225. .dec,
  226. .var {
  227. color: teal;
  228. }
  229. .pln {
  230. color: #48484c;
  231. }
  232. .prettyprint
  233. {
  234. padding:0;
  235. text-shadow:1px 1px 0 #fff;
  236. }
  237. .prettyprint ol
  238. {
  239. color:#ccc;
  240. }
  241. /* end ------------------------ */
  242. @media print {
  243. * { background: transparent !important; color: black !important; box-shadow:none !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; }
  244. a, a:visited { text-decoration: underline; }
  245. a[href]:after { content: " (" attr(href) ")"; }
  246. abbr[title]:after { content: " (" attr(title) ")"; }
  247. .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
  248. pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  249. thead { display: table-header-group; }
  250. tr, img { page-break-inside: avoid; }
  251. img { max-width: 100% !important; }
  252. @page { margin: 0.5cm; }
  253. p, h2, h3 { orphans: 3; widows: 3; }
  254. h2, h3 { page-break-after: avoid; }
  255. }