page.css 1.3 KB

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