style.css 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. margin-right: 15px;
  21. }
  22. #options {
  23. float: right;
  24. margin-top: 1em;
  25. }
  26. .options-group {
  27. margin-right: 30px;
  28. }
  29. #header span, #header label, #header input, #header a {
  30. display: inline-block;
  31. }
  32. #header a {
  33. font-weight: 600;
  34. color: rgb(101, 163, 221);
  35. }
  36. #header .label {
  37. font-weight: bold;
  38. }
  39. #header input {
  40. margin-left: 12px;
  41. margin-right: 6px;
  42. }
  43. #header label {
  44. color: #999;
  45. }
  46. .editor {
  47. position: absolute;
  48. top: 60px;
  49. bottom: 0;
  50. box-sizing: border-box;
  51. }
  52. #source {
  53. left: 0;
  54. width: 45%;
  55. }
  56. #output {
  57. left: 45%;
  58. width: 55%;
  59. }
  60. .highlight {
  61. background-color: rgba(46, 120, 190, 0.5);
  62. }