Skip to content

Instantly share code, notes, and snippets.

@shadda
Created July 10, 2015 05:47
Show Gist options
  • Select an option

  • Save shadda/a11a88317817ea01fba7 to your computer and use it in GitHub Desktop.

Select an option

Save shadda/a11a88317817ea01fba7 to your computer and use it in GitHub Desktop.
@font-face {
font-family: mensch;
src: url('../fonts/mensch-webfont.woff');
}
@font-face {
font-family: menlo;
src: url('../fonts/menlo-webfont.woff');
}
@font-face {
font-family: monaco;
src: url('../fonts/monaco-webfont.woff');
}
* {
margin: 0px;
padding: 0px;
}
input:focus { outline: none; }
body {
background: #2B303B;
font-family: 'Helvetica', sans-serif;
font-size: 12px;
color: #FFF;
text-shadow: 0px 2px 0px #000;
/*display: flex;*/
}
a:link, a:visited, a:active {
color: #D1D2D4;
text-decoration: none;
border-bottom: solid 1px #767778;
}
#header {
background: #222;
font-family: 'Helvetica', sans-serif;
font-size: 14px;
color: rgba(141, 224, 255, 1);
padding: 8px;
padding-left: 20px;
position: fixed;
top: 0px;
right: 0px;
left: 0px;
z-index: 10;
}
#header > span {
color: rgba(141, 224, 255, 0.8);
padding-left: 4px;
padding-right: 4px;
}
#left {
width: 300px;
min-height: 100%;
background: #252525;
padding-top: 35px;
position: fixed;
display: block;
top: 0px;
left: 0px;
bottom: 0px;
z-index: 9;
border-right: solid 4px #222;
}
#content {
height: 100%;
display: fixed;
top: 0px;
left: 0px;
right: 0px;
bottom: 0px;
padding-top: 30px;
padding-left: 305px;
padding-right: 100px;
}
#map {
width: 100%;
border-radius: 10px;
float: right;
margin-top: 20px;
/*border: solid 2px rgba(0, 0, 0, 0.1);*/
}
#map div.thumb {
float: right;
display: inline-block;
width: 133px;
height: 100px;
margin: 7px;
border-radius: 10px;
border-left: solid 6px rgba(0, 0, 0, .1);
border-top: solid 6px rgba(0, 0, 0, .1);
border-right: solid 6px rgba(0, 0, 0, .1);
border-bottom: solid 6px rgba(0, 0, 0, .1);
background-repeat: no-repeat;
}
#map div.thumb:hover {
border: solid 6px rgba(255, 255, 255, 0.1);
}
#map div.thumb.selected {
border: solid 6px rgba(255, 255, 255, 0.3);
}
#map div.thumb img {
border-radius: 8px;
visibility: hidden;
}
#map div.thumb div.thumb_det {
background: #333;
}
#map div.thumb a {
border-bottom: solid 2px #222;
background: #333;
display: inline-block;
}
#map div.thumb a span {
font-family: menlo;
}
#left ul {
list-style-type: none;
color: #AAA;
margin: 20px;
}
#left ul li {
padding: 5px;
padding-left: 10px;
font-weight: bold;
}
#left ul li.sub span.fa {
margin-right: 5px;
display: inline-block;
}
#left ul li a {
display: inline-block;
padding-bottom: 2px;
margin-bottom: 1px;
}
#left ul li a span {
display: inline-block;
margin-right: 5px;
}
#left ul li.sub {
background: #111;
font-weight: bold;
color: #ADF73D;
padding-left: 10px;
margin-bottom: 5px;
}
#content #subheader {
display: block;
border-bottom: dotted 1px rgba(255, 255, 255, 0.2);
background: #2B303B;
overflow: hidden;
padding: 10px;
padding-left: 0px;
padding-right: 0px;
margin-left: 50px;
margin-right: 10px;
position: static;
z-index: 11;
}
#content #subheader h1 {
color: rgba(255, 255, 255, .6);
font-size: 13px;
float: left;
padding: 5px;
font-weight: normal;
text-shadow: none;
}
#content form {
z-index: 11px;
float: right;
padding-left: 10px;
display: block;
border-left: dotted 1px rgba(255, 255, 255, 0.2);
}
#content form input.search_box {
border: none;
background: rgba(0, 0, 0, 0.2);
border-radius: 12px;
color: #eee;
padding: 5px;
padding-left: 10px;
padding-right: 10px;
display: inline-block;
font-size: 14px;
}
#preview {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment