Initial import.
This commit is contained in:
parent
bce93523ca
commit
d3b4793113
308 changed files with 23679 additions and 0 deletions
74
prototype/css/2c-l-fixed.css
Normal file
74
prototype/css/2c-l-fixed.css
Normal file
|
|
@ -0,0 +1,74 @@
|
|||
/*
|
||||
LAYOUT: One-Column (Left) Fixed
|
||||
DESCRIPTION: Two-column 950px fixed layout with one sidebar left of content
|
||||
*/
|
||||
|
||||
body {
|
||||
min-width:940px;
|
||||
}
|
||||
#header {
|
||||
position:relative;
|
||||
}
|
||||
#branding {
|
||||
width:940px;
|
||||
margin:0 auto;
|
||||
}
|
||||
#access {
|
||||
position:relative;
|
||||
overflow:hidden;
|
||||
}
|
||||
.menu {
|
||||
width:940px;
|
||||
margin:0 auto;
|
||||
}
|
||||
#main {
|
||||
width:940px;
|
||||
margin:0 auto;
|
||||
overflow:hidden;
|
||||
position:relative;
|
||||
}
|
||||
#container {
|
||||
width:940px;
|
||||
float:right;
|
||||
margin: 0 0 0 -310px;
|
||||
}
|
||||
#content {
|
||||
width:620px;
|
||||
overflow:hidden;
|
||||
margin: 0 0 0 320px;
|
||||
}
|
||||
.hentry {
|
||||
width:620px;
|
||||
}
|
||||
.main-aside {
|
||||
width:300px;
|
||||
float:left;
|
||||
position:relative;
|
||||
}
|
||||
#primary {
|
||||
float:left;
|
||||
}
|
||||
#secondary {
|
||||
clear:left;
|
||||
}
|
||||
#footer {
|
||||
clear:both;
|
||||
}
|
||||
#subsidiary {
|
||||
width:940px;
|
||||
margin:0 auto;
|
||||
overflow:hidden;
|
||||
}
|
||||
#subsidiary .aside {
|
||||
width:300px;
|
||||
float:left;
|
||||
margin:0 20px 0 0;
|
||||
}
|
||||
#subsidiary #third {
|
||||
margin:0;
|
||||
}
|
||||
#siteinfo {
|
||||
clear:both;
|
||||
width:940px;
|
||||
margin:0 auto;
|
||||
}
|
||||
64
prototype/css/images.css
Normal file
64
prototype/css/images.css
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
/* --------------------------------------------------------------
|
||||
|
||||
Default styles for Images
|
||||
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
.entry-content img {
|
||||
margin: 0 0 18px 0;
|
||||
}
|
||||
.alignleft,
|
||||
img.alignleft {
|
||||
float: left;
|
||||
margin-right:20px;
|
||||
}
|
||||
.alignright,
|
||||
img.alignright {
|
||||
display: block;
|
||||
float: right;
|
||||
margin-left:20px;
|
||||
}
|
||||
.aligncenter,
|
||||
img.aligncenter {
|
||||
margin-left:auto;
|
||||
margin-right:auto;
|
||||
display: block;
|
||||
clear: both;
|
||||
}
|
||||
.wp-caption {
|
||||
text-align: center;
|
||||
margin-bottom:18px;
|
||||
}
|
||||
.wp-caption img {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0 none;
|
||||
}
|
||||
.wp-caption p.wp-caption-text {
|
||||
margin: 0;
|
||||
padding:5px;
|
||||
}
|
||||
.gallery img {
|
||||
margin:0;
|
||||
}
|
||||
.wp-smiley { /* Prevent the smileys from breaking line-height */
|
||||
max-height:12px;
|
||||
margin:0 !important;
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
Adapt the following for use in your Child Themes when using
|
||||
different font-sizes and line-heights
|
||||
|
||||
.entry-content img,
|
||||
.wp-caption {
|
||||
margin-bottom:--px;
|
||||
}
|
||||
.wp-smiley {
|
||||
max-height:--px;
|
||||
}
|
||||
|
||||
All other styles can be overridden--or ignored!--in Child Theme stylesheets
|
||||
|
||||
*/
|
||||
64
prototype/css/reset.css
Normal file
64
prototype/css/reset.css
Normal file
|
|
@ -0,0 +1,64 @@
|
|||
/* --------------------------------------------------------------
|
||||
|
||||
Reset default browser CSS.
|
||||
|
||||
Based on work by Eric Meyer:
|
||||
http://meyerweb.com/eric/tools/css/reset/index.html
|
||||
|
||||
-------------------------------------------------------------- */
|
||||
|
||||
/* v1.0 | 20080212 */
|
||||
|
||||
html, body, div, span, applet, object, iframe,
|
||||
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
|
||||
a, abbr, acronym, address, big, cite, code,
|
||||
del, dfn, em, font, img, ins, kbd, q, s, samp,
|
||||
small, strike, strong, sub, sup, tt, var,
|
||||
b, u, i, center,
|
||||
dl, dt, dd, ol, ul, li,
|
||||
fieldset, form, label, legend,
|
||||
table, caption, tbody, tfoot, thead, tr, th, td {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
outline: 0;
|
||||
font-size: 100%;
|
||||
vertical-align: baseline;
|
||||
background: transparent;
|
||||
}
|
||||
body {
|
||||
background:#fff;
|
||||
line-height: 1;
|
||||
}
|
||||
ol, ul {
|
||||
list-style: none;
|
||||
}
|
||||
blockquote, q {
|
||||
quotes: none;
|
||||
}
|
||||
blockquote:before, blockquote:after,
|
||||
q:before, q:after {
|
||||
content: '';
|
||||
content: none;
|
||||
}
|
||||
|
||||
/* remember to define focus styles!
|
||||
:focus {
|
||||
outline: 0;
|
||||
}
|
||||
*/
|
||||
/* remember to highlight inserts somehow! */
|
||||
ins {
|
||||
text-decoration: none;
|
||||
}
|
||||
del {
|
||||
text-decoration: line-through;
|
||||
}
|
||||
|
||||
/* tables still need 'cellspacing="0"' in the markup */
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
border-spacing: 0;
|
||||
}
|
||||
|
||||
a img { border: none; }
|
||||
1097
prototype/css/style.css
Normal file
1097
prototype/css/style.css
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue