2020-05-02 02:16:49 +00:00
|
|
|
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
|
|
|
|
html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
|
|
|
|
|
|
|
|
|
|
|
|
/* style.css */
|
|
|
|
|
|
|
|
html {
|
|
|
|
overflow-y:scroll; /* always display scrollbar to prevent horizontal lurch */
|
|
|
|
}
|
|
|
|
img {
|
|
|
|
border:0;
|
|
|
|
}
|
|
|
|
a {
|
|
|
|
color:#4078c0;
|
|
|
|
text-decoration:none;
|
|
|
|
}
|
|
|
|
a:hover {
|
|
|
|
cursor:pointer;
|
|
|
|
text-decoration:underline;
|
|
|
|
}
|
|
|
|
h1 a {
|
|
|
|
color:black;
|
|
|
|
text-decoration:none;
|
|
|
|
}
|
|
|
|
h1 a:hover {
|
|
|
|
color:black;
|
|
|
|
}
|
2020-05-24 05:49:33 +00:00
|
|
|
h1 {
|
2020-05-02 02:16:49 +00:00
|
|
|
margin-top:0;
|
|
|
|
}
|
|
|
|
.code {
|
|
|
|
background: #F8F8F8;
|
|
|
|
font-family:Consolas,monospace;
|
|
|
|
white-space:pre;
|
|
|
|
}
|
|
|
|
.code-multiline {
|
|
|
|
display:inline-block;
|
|
|
|
padding:8px;
|
|
|
|
border-radius:8px;
|
|
|
|
}
|
|
|
|
.content-paragraph {
|
|
|
|
/* mimic default <p> margins */
|
|
|
|
margin-top: 1em;
|
|
|
|
margin-bottom: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
|
|
|
|
|
|
|
html, body {
|
|
|
|
/* structural */
|
|
|
|
min-height:100%;
|
|
|
|
margin:0;
|
|
|
|
border:0;
|
|
|
|
padding:0;
|
|
|
|
|
|
|
|
/* cosmetic */
|
|
|
|
font-family:"Helvetica Neue","Segoe UI",Arial,sans-serif;
|
|
|
|
font-size:13px;
|
|
|
|
line-height:1.4;
|
|
|
|
color:#333;
|
|
|
|
}
|
|
|
|
|
2020-05-24 05:49:51 +00:00
|
|
|
/* Create background pattern by layering two gradients */
|
|
|
|
html {
|
|
|
|
background: repeating-linear-gradient(45deg, #FFF, #f8f8f8 5px, #fff 10px);
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
background: repeating-linear-gradient(135deg, rgba(255,255,255,0), rgba(255,255,255,255) 5px, rgba(255,255,255,0) 10px);
|
|
|
|
}
|
|
|
|
|
2020-05-02 02:16:49 +00:00
|
|
|
#container {
|
|
|
|
margin:0 auto;
|
|
|
|
width:960px;
|
|
|
|
position:relative;
|
|
|
|
|
|
|
|
height:auto !important;
|
|
|
|
height:100%; /* oldIE */
|
|
|
|
min-height:100%;
|
|
|
|
|
|
|
|
/* cosmetic */
|
|
|
|
background:white;
|
|
|
|
}
|
|
|
|
|
|
|
|
#content {
|
|
|
|
padding:14px;
|
|
|
|
background:white;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
|
|
|
|
|
|
|
.tag::before {
|
|
|
|
content:"";
|
|
|
|
|
|
|
|
display:inline-block;
|
|
|
|
width:7px;
|
|
|
|
height:7px;
|
|
|
|
|
|
|
|
margin-right:2px;
|
|
|
|
|
|
|
|
background:transparent url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAcAAAAHCAYAAADEUlfTAAAAZUlEQVQI12P4//8/Awyrqqp6KSkp/QdhFRWV7cgS+kDBN0B8RVlZuRikACahB+T8ger6BMTXwJJAiTwg4xvMOCj+ART3ZwCa3YYm8QcopgsyEWasDVT3W5AVMHcgO6gViNORXQ8A84NToxbSsJcAAAAASUVORK5CYII=') no-repeat 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tag-filter-warn {
|
|
|
|
position:fixed;
|
|
|
|
top:0;
|
|
|
|
right:0;
|
|
|
|
|
|
|
|
padding:4px;
|
|
|
|
|
|
|
|
background:lightyellow;
|
|
|
|
border-bottom: 1px solid #888;
|
|
|
|
border-left:1px solid #888;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
|
|
|
|
|
|
|
.projtable {
|
|
|
|
border-collapse: collapse;
|
|
|
|
width:100%;
|
|
|
|
}
|
|
|
|
.projtable tr {
|
|
|
|
transition:0.2s linear;
|
|
|
|
}
|
|
|
|
.projtable tr:hover {
|
|
|
|
background:#F8F8F8;
|
|
|
|
}
|
|
|
|
.projtable td {
|
|
|
|
padding: 2px 4px;
|
|
|
|
}
|
|
|
|
.projtable small {
|
|
|
|
color:grey;
|
|
|
|
font-style:italic;
|
|
|
|
}
|
|
|
|
.projtable tr td:first-child {
|
|
|
|
width:95px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.projinfo {
|
|
|
|
}
|
|
|
|
.projbody {
|
|
|
|
}
|
|
|
|
.projbody_halfw {
|
|
|
|
float:left;
|
|
|
|
width: 860px; /* 740px full - 60px rhs column - 2px border */
|
|
|
|
}
|
|
|
|
.projbody_fullw {
|
|
|
|
|
|
|
|
}
|
|
|
|
.projimg {
|
|
|
|
float:right;
|
|
|
|
width:62px; /* 60px + 2px border */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
|
|
|
|
|
|
|
@media screen and (max-width:960px) {
|
|
|
|
|
|
|
|
#container {
|
|
|
|
width:100%;
|
|
|
|
}
|
|
|
|
.projimg {
|
|
|
|
float:clear;
|
|
|
|
width:100%;
|
|
|
|
}
|
|
|
|
.projbody_halfw {
|
|
|
|
float:clear;
|
|
|
|
width:100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
|
|
|
|
|
|
|
#logo {
|
|
|
|
background:transparent url('logo.png') no-repeat 0 0;
|
|
|
|
width:24px;
|
|
|
|
height:24px;
|
|
|
|
display:inline-block;
|
|
|
|
margin-right:4px;
|
|
|
|
position:relative;
|
|
|
|
top:4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
|
|
|
|
|
|
|
.homeimage {
|
|
|
|
width:90px;
|
|
|
|
height:32px;
|
|
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
|
|
|
|
.thumbimage {
|
|
|
|
width:60px;
|
|
|
|
height:60px;
|
|
|
|
opacity: 0.8;
|
|
|
|
transition:0.2s opacity;
|
|
|
|
border:1px solid lightgrey;
|
|
|
|
|
|
|
|
object-fit: cover;
|
|
|
|
}
|
|
|
|
.thumbimage:hover {
|
|
|
|
opacity:1.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.no-image {
|
|
|
|
width:90px;
|
|
|
|
height:32px;
|
|
|
|
display:block;
|
|
|
|
background: white url('no_image.png') no-repeat 0 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* */
|
|
|
|
|
|
|
|
.downloads-small {
|
|
|
|
margin:0;
|
|
|
|
padding:0;
|
|
|
|
list-style-type:none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.downloads-small li:before {
|
|
|
|
content:"•";
|
|
|
|
}
|
|
|
|
.downloads-small li a:before {
|
|
|
|
font-weight:bold;
|
|
|
|
content:"⇩ ";
|
|
|
|
}
|