Advertisement
Guest User

Untitled

a guest
Oct 25th, 2016
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.08 KB | None | 0 0
  1. html {
  2. font: 12pt/1.5 'Arial', 'Yu Gothic', sans-serif;
  3. height: 100%;
  4. }
  5.  
  6. body {
  7. margin: 0;
  8. height: 100%;
  9. }
  10.  
  11. body:not(.ready) {
  12. display: none;
  13. }
  14.  
  15. #title {
  16. background: rgb(51, 51, 102);
  17. color: #fff;
  18. box-sizing: border-box;
  19. height: 100%;
  20. position: relative;
  21. }
  22.  
  23. h1 {
  24. position: absolute;
  25. top: 50%;
  26. left: 50%;
  27. transform: translate(-50%, -50%);
  28. margin: 0;
  29. }
  30.  
  31. #table-of-contents {
  32. position: fixed;
  33. top: 0;
  34. left: 0;
  35. right: 0;
  36. background: rgb(51, 51, 102);
  37. box-shadow: 0 1px 6px rgba(51, 51, 102, 0.12), 0 1px 4px rgba(51, 51, 102, 0.16);
  38. color: #fff;
  39. }
  40.  
  41. #table-of-contents h2 {
  42. display: none;
  43. }
  44.  
  45. #table-of-contents ul {
  46. margin: auto;
  47. width: 60rem;
  48. padding: 0;
  49. display: block;
  50. }
  51.  
  52. #table-of-contents ul ul {
  53. display: none;
  54. }
  55.  
  56. #table-of-contents li {
  57. display: block;
  58. float: left;
  59. }
  60.  
  61. #table-of-contents:after {
  62. content: '';
  63. display: block;
  64. clear: left;
  65. }
  66.  
  67. #table-of-contents a {
  68. display: block;
  69. color: inherit;
  70. text-decoration: inherit;
  71. padding: 1rem;
  72. color: #ccf;
  73. font-weight: bold;
  74. }
  75.  
  76. #table-of-contents a:hover {
  77. color: #fff;
  78. background: rgba(255, 255, 255, 0.1);
  79. }
  80.  
  81. #content {
  82. width: 60rem;
  83. margin: 0 auto;
  84. }
  85.  
  86. #postamble {
  87. text-align: center;
  88. padding: 0.5rem 0;
  89. background: #99c;
  90. color: #fff;
  91. }
  92.  
  93. h2 {
  94. border-bottom: 1px solid #ccc;
  95. padding-bottom: 0.5rem;
  96. }
  97.  
  98. .outline-3 {
  99. box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.16);
  100. margin: 2rem 0;
  101. }
  102.  
  103. h3 {
  104. margin: 0;
  105. padding: 1rem;
  106. background: #f5f5f5;
  107. color: #999;
  108. }
  109.  
  110. .outline-text-3, .outline-4 {
  111. padding: 0.5rem 1rem;
  112. }
  113.  
  114. a[href] {
  115. color: #669;
  116. }
  117.  
  118. table {
  119. width: 100%;
  120. border-collapse: collapse;
  121. border-top: 1px solid #e0e0e0;
  122. border-bottom: 1px solid #e0e0e0;
  123. }
  124.  
  125. th {
  126. background: #f5f5f5;
  127. border-bottom: 1px solid #e0e0e0;
  128. padding: 0.75rem 1rem;
  129. }
  130.  
  131. td {
  132. border-bottom: 1px solid #e0e0e0;
  133. padding: 0.75rem 1rem;
  134. }
  135.  
  136. .TODO, .DONE {
  137. font: inherit;
  138. border-radius: 2px;
  139. color: #fff;
  140. padding: 0 0.25em;
  141. }
  142.  
  143. .TODO {
  144. background: #c33;
  145. }
  146.  
  147. .DONE {
  148. background: #669;
  149. }
  150.  
  151. .table-number {
  152. font-weight: bold;
  153. }
  154.  
  155. .timestamp {
  156. color: #c90;
  157. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement