track static elements for the storytime.ivysaur.me site
This commit is contained in:
parent
1878d023bf
commit
9def31abeb
11
sites/storytime.ivysaur.me/config.ini
Normal file
11
sites/storytime.ivysaur.me/config.ini
Normal file
@ -0,0 +1,11 @@
|
||||
[codesite]
|
||||
title=storytime.ivysaur.me
|
||||
page_thumb_w=60
|
||||
page_thumb_h=60
|
||||
index_thumb_w=90
|
||||
index_thumb_h=32
|
||||
|
||||
blurbs=off
|
||||
article_header=ARTICLE
|
||||
|
||||
; n.b. Recommend a multiple of the JPEG iDCT block size for index_thumb_h
|
10
sites/storytime.ivysaur.me/footer.htm
Normal file
10
sites/storytime.ivysaur.me/footer.htm
Normal file
@ -0,0 +1,10 @@
|
||||
<p>
|
||||
<strong>CONTACT</strong>
|
||||
</p>
|
||||
<p>
|
||||
<a
|
||||
href="http://www.google.com/recaptcha/mailhide/d?k=01GuAWzMc9JjSdooo-2KCMQA==&c=kgR3dBrP39yhPIy8FvLFbuBLmWqorQBDc_Zjbw6NAmU="
|
||||
onclick="window.open('http://www.google.com/recaptcha/mailhide/d?k\07501GuAWzMc9JjSdooo-2KCMQA\75\75\46c\75kgR3dBrP39yhPIy8FvLFbuBLmWqorQBDc_Zjbw6NAmU\075', '', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=500,height=300'); return false;"
|
||||
title="Reveal this e-mail address"
|
||||
>Click here</a> to email me.
|
||||
</p>
|
1
sites/storytime.ivysaur.me/header.htm
Normal file
1
sites/storytime.ivysaur.me/header.htm
Normal file
@ -0,0 +1 @@
|
||||
<h1><a href="index.html"><div id="ivylogo"></div>storytime.ivysaur.me</a></h1>
|
12
sites/storytime.ivysaur.me/homepage_blurb.htm
Normal file
12
sites/storytime.ivysaur.me/homepage_blurb.htm
Normal file
@ -0,0 +1,12 @@
|
||||
<p>
|
||||
The stories and information posted here are artistic works of fiction and falsehood. Only a fool would take anything posted here as fact.
|
||||
</p>
|
||||
<p>
|
||||
<strong>LICENSE</strong>
|
||||
</p>
|
||||
<p>
|
||||
Please consider all articles on this page to be under the <a rel="license" href="http://creativecommons.org/licenses/by-sa/4.0/">CC-BY-SA 4.0 International license</a> unless otherwise specified.
|
||||
</p>
|
||||
<p>
|
||||
<strong>ARTICLES</strong>
|
||||
</p>
|
BIN
sites/storytime.ivysaur.me/static/11.png
Normal file
BIN
sites/storytime.ivysaur.me/static/11.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
BIN
sites/storytime.ivysaur.me/static/favicon.ico
Normal file
BIN
sites/storytime.ivysaur.me/static/favicon.ico
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.5 KiB |
BIN
sites/storytime.ivysaur.me/static/ivysaur24.png
Normal file
BIN
sites/storytime.ivysaur.me/static/ivysaur24.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.4 KiB |
BIN
sites/storytime.ivysaur.me/static/no_image.png
Normal file
BIN
sites/storytime.ivysaur.me/static/no_image.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 416 B |
BIN
sites/storytime.ivysaur.me/static/pixel_weave.png
Normal file
BIN
sites/storytime.ivysaur.me/static/pixel_weave.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 233 B |
BIN
sites/storytime.ivysaur.me/static/pixel_weave_@2X.png
Normal file
BIN
sites/storytime.ivysaur.me/static/pixel_weave_@2X.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 264 B |
187
sites/storytime.ivysaur.me/static/style.css
Normal file
187
sites/storytime.ivysaur.me/static/style.css
Normal file
@ -0,0 +1,187 @@
|
||||
/* style.css */
|
||||
|
||||
html {
|
||||
overflow-y:scroll; /* always display scrollbar to prevent horizontal lurch */
|
||||
}
|
||||
img {
|
||||
border:0;
|
||||
}
|
||||
a {
|
||||
color:black;
|
||||
text-decoration:underline;
|
||||
}
|
||||
a:hover {
|
||||
color:blue;
|
||||
cursor:pointer;
|
||||
}
|
||||
h1 a {
|
||||
text-decoration:none;
|
||||
}
|
||||
h1 a:hover {
|
||||
color:black;
|
||||
}
|
||||
h1,h2,h3 {
|
||||
margin-top:0;
|
||||
}
|
||||
.code {
|
||||
background: #F8F8F8;
|
||||
font-family:Consolas,monospace;
|
||||
white-space:pre;
|
||||
}
|
||||
|
||||
/* */
|
||||
|
||||
html, body {
|
||||
/* structural */
|
||||
height:100%;
|
||||
min-height:100%;
|
||||
margin:0;
|
||||
border:0;
|
||||
padding:0;
|
||||
|
||||
/* cosmetic */
|
||||
font-family:"Helvetica Neue","Segoe UI",Arial,sans-serif;
|
||||
font-size:12px;
|
||||
background:#DDD url('pixel_weave.png'); /* thanks subtlepatterns.com ! */
|
||||
color:#333;
|
||||
}
|
||||
|
||||
#container {
|
||||
margin:0 auto;
|
||||
width:768px;
|
||||
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: 678px; /* 740px full - 60px rhs column - 2px border */
|
||||
}
|
||||
.projbody_fullw {
|
||||
|
||||
}
|
||||
.projimg {
|
||||
float:right;
|
||||
width:62px; /* 60px + 2px border */
|
||||
}
|
||||
|
||||
/* */
|
||||
|
||||
#ivylogo {
|
||||
background:transparent url('ivysaur24.png') no-repeat 0 0;
|
||||
width:24px;
|
||||
height:24px;
|
||||
display:inline-block;
|
||||
*display:block;
|
||||
*zoom:1;
|
||||
margin-right:4px;
|
||||
position:relative;
|
||||
top:4px;
|
||||
}
|
||||
|
||||
/* */
|
||||
|
||||
.homeimage {
|
||||
width:90px;
|
||||
height:32px;
|
||||
}
|
||||
|
||||
.homeimage-sprite {
|
||||
background: white url('logos.jpg') no-repeat 0 0;
|
||||
}
|
||||
|
||||
.thumbimage {
|
||||
width:60px;
|
||||
height:60px;
|
||||
opacity: 0.8;
|
||||
transition:0.2s opacity;
|
||||
border:1px solid lightgrey;
|
||||
}
|
||||
.thumbimage:hover {
|
||||
opacity:1.0;
|
||||
}
|
||||
|
||||
.no-image {
|
||||
width:90px;
|
||||
height:32px;
|
||||
display:block;
|
||||
background: white url('no_image.png') no-repeat 0 0;
|
||||
}
|
||||
|
||||
/* */
|
||||
|
||||
.spoiler {
|
||||
color:black;
|
||||
background:black;
|
||||
}
|
||||
.spoiler:hover {
|
||||
color:white;
|
||||
}
|
||||
|
||||
.article-read-more {
|
||||
display:none;
|
||||
}
|
Reference in New Issue
Block a user