Guest User

Untitled

a guest
Nov 14th, 2018
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. // For use with Mariana theme and the One Dark UI theme
  2. atom-pane .item-views {
  3. border-top: 3px solid #1a1f23;
  4. }
  5.  
  6. atom-text-editor {
  7. background-color: rgba(0, 0, 0, 0.02);
  8. text-shadow: 0 0 1px rgba(0, 0, 0, 0.6);
  9.  
  10. .invisible-character {
  11. color: rgba(255, 255, 255, 0.1);
  12. text-shadow: none;
  13. }
  14.  
  15. .cursor-line {
  16. background: rgba(0, 0, 0, 0.5);
  17. }
  18.  
  19. .gutter {
  20. color: rgba(255, 255, 255, .5);
  21. background: rgba(255, 255, 255, 0.03);
  22. text-shadow: 0 0 3px #000;
  23.  
  24. &:last-child {
  25. background-image: linear-gradient(
  26. to right,
  27. rgba(0, 0, 0, .3), rgba(0, 0, 0, .18)
  28. );
  29. width: 15px;
  30. }
  31.  
  32. .line-number {
  33. padding-left: 1em;
  34.  
  35. &.cursor-line {
  36. color: rgba(255, 255, 255, 1);
  37. background-color: rgba(0, 0, 0, 0.6);
  38. }
  39. }
  40. }
  41. }
Add Comment
Please, Sign In to add comment