Skip to content

Instantly share code, notes, and snippets.

@leonardo403
Created September 7, 2014 01:46
Show Gist options
  • Save leonardo403/6fd11cb41ded270b2bd2 to your computer and use it in GitHub Desktop.
Save leonardo403/6fd11cb41ded270b2bd2 to your computer and use it in GitHub Desktop.
A Pen by Leonardo Lima.
/*
* Your Stylesheet Atom
* Author: Leonardo Lima
* This stylesheet is loaded when Atom starts up and is reloaded automatically
* when it is changed.
*
* If you are unfamiliar with LESS, you can read more about it here:
* http://www.lesscss.org
*/
@red:red;
@blue:blue;
@white:white;
@black:black;
.tree-view {
background:url(http://braziljs.com.br/img/logos/braziljs-logo.svg) no-repeat -2.88em 30em;
cursor:pointer;
transition: 5s;
}
.tree-view:hover{
background: @red;
}
.editor {
background: -webkit-linear-gradient(@black,@red); /* For Safari 5.1 to 6.0 */
background: -o-linear-gradient(@black,@red); /* For Opera 11.1 to 12.0 */
background: -moz-linear-gradient(@black,@red); /* For Firefox 3.6 to 15 */
background: linear-gradient(@black,@red); /* Standard syntax */
}
.editor .cursor {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment