Files
play-clj/doclet/resources/main.css
Corey 03cc86e159 Reworked doclet to work with frames
Hash in url bar is page to load for frames
When you click a nav link, it sets the hash
If you go to nav link in new tab, and click home, it will load the same page, but in the frames
2015-01-23 17:06:37 -05:00

157 lines
4.2 KiB
CSS

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}
body {
font-family: "Fira Sans", "Source Sans Pro", "Helvetica Neue", sans-serif;
background-color: #293134;
color: #c1cbc2;
font-size: 16px;
line-height: 1.4em;
}
a {
transition-property: color;
transition-duration: 200ms;
transition-timing-function: cubic-bezier(.53,.4,.46,.75);
color: #f2ecd7;
box-shadow: 0 2px 0 0 rgba(255,255,255,0.1);
text-decoration: none;
}
a:hover {
color: #f2dc77;
}
.sidebar {
transition-property: opacity;
transition-duration: 200ms;
transition-timing-function: cubic-bezier(.53,.4,.46,.75);
width: 240px;
height: 100%;
top: 0px;
left: 0px;
overflow: auto;
padding: 0px 0px 0px 10px;
opacity: 0.6;
}
.sidebar:hover {
opacity: 0.9;
}
.ns {
font-size: 24px;
padding: 20px 0 0px 0;
margin-bottom: 10px;
display: inline-block;
color: #ccf;
}
.name {
margin-top: 5px;
margin-bottom: 5px;
text-indent: 10px;
}
.headbar {
padding: 5px 0px 5px 5px;
width: 100%;
border-bottom: 1px solid black
}
.content {
padding: 20px 0px 20px 20px;
}
.content code {
box-shadow: 0 0 0 1px rgba(255,255,255,0.2);
border-radius: 3px;
padding: 0px 3px;
background: rgba(255,255,255,0.1);
text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}
.content code, .content pre {
font-family: "Fira Mono", "Source Code Poro", "Consolas", "Menlo", monospace;
}
.item {
}
.clj {
margin-bottom: 2em;
}
.c-head {
font-size: 20px;
margin-bottom: 1em;
color: #ccf;
font-size: 1.5em;
}
.c-doc {
}
.c-src {
margin-bottom: 2em;
}
.java {
margin-bottom: 2em;
}
.j-text {
margin-bottom: 5px;
}
.j-item * {
transition-property: opacity;
transition-duration: 200ms;
transition-timing-function: cubic-bezier(.53,.4,.46,.75);
}
.j-item {
margin-bottom: 0px;
padding: 0.8em 0 0.8em 0;
line-height: 1.4em;
background: rgba(0, 0, 0, 0.15);
}
.j-item:nth-child(2n) {
background: rgba(0, 0, 0, 0.25);
}
.j-name {
color: #69e;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.8);
margin: 0 0px 0 20px;
display: inline-block;
font-size: 1.4em;
line-height: 1.4em;
border-right: 5px transparent solid;
box-shadow: 0 2px 0 0 rgba(150,200,255,0.08);
}
.j-args {
padding-left: 1em;
opacity: 0.4;
display: inline-block;
}
.j-item:hover .j-args {
opacity: 0.95;
}
.j-arg {
}
.j-type {
opacity: 0.5;
}
.j-doc {
display: block;
padding: 17px 20px 0px 20px;
text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.5);
}