Skip to content

Instantly share code, notes, and snippets.

@zakuroishikuro
Created March 31, 2016 11:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zakuroishikuro/13ee754909e25d732b30cdd147c7daa9 to your computer and use it in GitHub Desktop.
Save zakuroishikuro/13ee754909e25d732b30cdd147c7daa9 to your computer and use it in GitHub Desktop.
Atom Background Image (white theme recommended)
.tree-view, .tab, status-bar { font-family: klee, serif }
atom-text-editor { font-family: menlo, klee, monospace }
body:after{
// 背景の設定
background-image: url("http://40.media.tumblr.com/29401a5705bfb798141e04a581f0c98f/tumblr_nh8vlsfsoW1qbo867o1_1280.jpg");
background-position: right bottom -350px;
background-repeat: no-repeat;
//background-size: contain;
// その他
opacity: 0.1; //不透明度を限りなく下げる
z-index: 2; //ツリーペインより上にする
pointer-events: none; //クリックを捕捉しないようにする
// 画面全体に広げる
content: "";
display: block;
position: fixed;
top: 0px;
bottom: 0px;
right: 0px;
left: 0px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment