You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

31 lines
595 B

  1. /* === EDITOR === */
  2. .editBox {
  3. .toolbar {
  4. display: inline;
  5. .toolbutton {
  6. background: white;
  7. box-shadow: none;
  8. border: none;
  9. padding: 8px;
  10. }
  11. }
  12. textarea {
  13. font-family: 'Inconsolata', monospace;
  14. border: none;
  15. ._shadow_0dp;
  16. padding: 10px;
  17. line-height: 1.5em !important;
  18. }
  19. textarea::-webkit-scrollbar {
  20. background-color: transparent;
  21. width: 8px;
  22. }
  23. textarea::-webkit-scrollbar-thumb {
  24. background-color: rgba(0,0,0,0.5);
  25. ._shadow_0dp;
  26. }
  27. textarea::-webkit-scrollbar-corner {
  28. background: rgba(0,0,0,0);
  29. }
  30. }