index.css 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. body {
  2. margin: 0 0 0 0;
  3. }
  4. #edit-pane {
  5. position: fixed;
  6. top: 0;
  7. width: 40%;
  8. height: 100%;
  9. font-size: 16px;
  10. }
  11. #edit-pane #controls {
  12. color: #2e2e2e;
  13. position: absolute;
  14. right: 0;
  15. top: 0;
  16. z-index: 1;
  17. margin: 5px 5px 0 0;
  18. }
  19. #edit-pane #controls a {
  20. font-weight: bold;
  21. text-decoration: none;
  22. color: #2e2e2e;
  23. }
  24. #editor {
  25. width: 100%;
  26. height: 100%;
  27. font-size: 16px;
  28. }
  29. #preview {
  30. position: absolute;
  31. left: 40%;
  32. top: 0;
  33. right: 0;
  34. bottom: 0;
  35. }
  36. #preview iframe {
  37. height: 100%;
  38. width: 100%;
  39. border: none;
  40. }
  41. #stash-pane {
  42. position: fixed;
  43. top: 0;
  44. width: 60%;
  45. height: 100%;
  46. font-size: 16px;
  47. }
  48. #stash-pane #controls {
  49. color: #2e2e2e;
  50. position: absolute;
  51. right: 0;
  52. top: 0;
  53. z-index: 1;
  54. margin: 5px 5px 0 0;
  55. }
  56. #stash-pane #controls a {
  57. font-weight: bold;
  58. text-decoration: none;
  59. color: #2e2e2e;
  60. }
  61. th, td {
  62. text-align: left;
  63. padding: 8px;
  64. border-bottom: 1px solid #ddd;
  65. font-size: 16px;
  66. }
  67. tr:nth-child(even){background-color: #f2f2f2}
  68. th {
  69. background-color: #2e2e2e;
  70. color: white;
  71. }