page.css 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. @font-face {
  2. font-family: 'inconsolata';
  3. src: url('files/inconsolata.woff') format('woff');
  4. font-weight: normal;
  5. font-style: normal;
  6. }
  7. body {
  8. margin: 30px 20px;
  9. color: #555;
  10. font-family: 'inconsolata';
  11. font-size: 15px;
  12. line-height: 18px;
  13. overflow: auto;
  14. }
  15. a {
  16. color: #1184CE;
  17. }
  18. h1 {
  19. color: #333;
  20. font-size: 25px;
  21. font-weight: normal;
  22. margin-top: 10px;
  23. }
  24. h2 {
  25. color: #4B0;
  26. font-size: 18px;
  27. font-weight: normal;
  28. margin-top: 40px;
  29. }
  30. h3 {
  31. color: #000;
  32. font-size: 16px;
  33. font-weight: normal;
  34. margin-top: 30px;
  35. }
  36. div {
  37. /* padding-left: 30px; */
  38. margin-bottom: 20px;
  39. }
  40. div.desc {
  41. padding-left: 0px;
  42. }
  43. pre, code {
  44. margin-top: 20px;
  45. margin-bottom: 20px;
  46. }
  47. code {
  48. display: block;
  49. width: -webkit-calc( 100% - 40px );
  50. width: -moz-calc( 100% - 40px );
  51. width: calc( 100% - 40px );
  52. padding: 20px;
  53. white-space: pre-wrap;
  54. background-color: #f9f9f9;
  55. overflow: auto;
  56. }
  57. iframe {
  58. width: 100%;
  59. height: 420px;
  60. border:0;
  61. }
  62. th {
  63. padding: 10px;
  64. text-decoration: underline;
  65. }
  66. td {
  67. text-align: center;
  68. }
  69. table code {
  70. padding: 2px;
  71. margin: 0px;
  72. width: auto;
  73. }
  74. strong {
  75. color: #000;
  76. font-weight: normal;
  77. }
  78. #button {
  79. position: fixed;
  80. top: 20px;
  81. right: 20px;
  82. padding: 8px;
  83. color: #fff;
  84. background-color: #555;
  85. opacity: 0.5;
  86. }
  87. #button:hover {
  88. cursor: pointer;
  89. opacity: 1;
  90. }
  91. a.permalink {
  92. float: right;
  93. margin-left: 5px;
  94. }