style.css 951 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. body {
  2. margin: 0;
  3. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  4. }
  5. #header {
  6. position: absolute;
  7. top: 0;
  8. left: 0;
  9. right: 0;
  10. height: 60px;
  11. box-sizing: border-box;
  12. background-color: #1e1e1e;
  13. border-bottom: 1px solid #333;
  14. padding: 0.3em 1.6em;
  15. color: #fff;
  16. }
  17. h1 {
  18. font-size: 18px;
  19. display: inline-block;
  20. }
  21. #options {
  22. float: right;
  23. margin-top: 1em;
  24. }
  25. .options-group {
  26. margin-right: 30px;
  27. }
  28. #header span, #header label, #header input {
  29. display: inline-block;
  30. }
  31. #header .label {
  32. font-weight: bold;
  33. }
  34. #header input {
  35. margin-left: 12px;
  36. margin-right: 6px;
  37. }
  38. #header label {
  39. color: #999;
  40. }
  41. .editor {
  42. position: absolute;
  43. top: 60px;
  44. bottom: 0;
  45. box-sizing: border-box;
  46. }
  47. #source {
  48. left: 0;
  49. width: 45%;
  50. }
  51. #output {
  52. left: 45%;
  53. width: 55%;
  54. }
  55. .highlight {
  56. background-color: rgba(46, 120, 190, 0.5);
  57. }