Skip to content

Instantly share code, notes, and snippets.

@nekolinuxblog
Last active August 29, 2015 14:18
Show Gist options
  • Save nekolinuxblog/e1a7dd10590bc2e37f2f to your computer and use it in GitHub Desktop.
Save nekolinuxblog/e1a7dd10590bc2e37f2f to your computer and use it in GitHub Desktop.
pre.commandline {
/*fontの指定(google web font)*/
font-family: 'Source Code Pro' ;
/*境界との位置関係を調整*/
margin: 0px 0px 0px 0px;
padding: 5px 0px 5px 5px;
border: 1px solid #7a7a7a;
/*色*/
background-color: #ffffff;
color: #0000000;
/*角を丸くする*/
-webkit-border-radius: 5px;
-moz-border-radius:5px;
border-radius:5px;
/*影をつける(外と中の両方)*/
-webkit-box-shadow:3px 3px 5px 0 #aaa, 1px 1px 5px 0 rgba(0,0,0,0.3) inset;
-moz-box-shadow:3px 3px 5px 0 #aaa, 1px 1px 5px 0 rgba(0,0,0,0.3) inset;
box-shadow:3px 3px 5px 0 #aaa, 1px 1px 5px 0 rgba(0,0,0,0.3) inset;
overflow: auto;
white-space: pre-wrap;
word-wrap: break-word;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment