Created
November 11, 2015 23:19
-
-
Save garrows/bacc80c318ae62996fe8 to your computer and use it in GitHub Desktop.
Atom Custom Background
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.panes::after { | |
content: ""; | |
position: fixed; | |
top: 0; | |
right: 0; | |
left: 0; | |
bottom: 0; | |
pointer-events: none; | |
background: url("https://source.unsplash.com/random"); | |
// background: url("https://source.unsplash.com/category/nature"); //Nature category | |
// background: url("http://thecatapi.com/api/images/get?format=src&size=full&type=jpg,png"); //Cats | |
background-size: cover; | |
opacity: 0.2; | |
transform: translate3d(0,0,0); | |
-webkit-transform: translate3d(0,0,0); | |
backface-visibility: hidden; | |
-webkit-backface-visibility: hidden; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To use this, open Atom.io and select "Open Your Stylesheet" and paste the above at the bottom.
You should see a random background pic show up after saving.