Advertisement
EXTREMEXPLOIT

Atom-Runner.less

Nov 27th, 2020
785
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.64 KB | None | 0 0
  1. // The ui-variables file is provided by base themes provided by Atom.
  2. //
  3. // See https://github.com/atom/atom-dark-ui/blob/master/stylesheets/ui-variables.less
  4. // for a full listing of what's available.
  5. @import "ui-variables";
  6.  
  7. .atom-runner {
  8.  background: @base-background-color;
  9.  padding: @component-padding;
  10.    
  11.  overflow-y: scroll;
  12.  color: @text-color;
  13.  
  14.  pre {
  15.    background-color: @input-background-color;
  16.    padding: (@component-padding + 5);
  17.    font-size: 120%;
  18.  
  19.    .stderr { color: @text-color-error; }
  20.  }
  21.  
  22.  .footer {
  23.    color: @text-color;
  24.    padding-top: (@component-padding + 5);
  25.    word-break: break-word;
  26.  }
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement