124 lines
1.9 KiB
CSS
124 lines
1.9 KiB
CSS
/* A style sheet for Minimalist Dong sort of based on Grouse! */
|
|
|
|
BODY {
|
|
color: #000000;
|
|
background: #FFFFFF;
|
|
font-family: "trebuchet ms", helvetica, arial, san-serif;
|
|
}
|
|
|
|
H1 { /* Used for masthead (site title, eg Minimalist Dong) */
|
|
font-size: 2em;
|
|
}
|
|
|
|
H2 { /* Reserved for article headlines, not used on base blog page */
|
|
font-size: 1.4em;
|
|
}
|
|
|
|
H3 { /* Used for blog entry headings and article subheadings */
|
|
font-size: 1.2em;
|
|
margin-bottom: 0.1em;
|
|
}
|
|
|
|
H4 { /* Used for blog entry subheadings and article subsubheadings */
|
|
font-size: 1.1em;
|
|
}
|
|
|
|
P.tagline { /* Used for taglines that appear next to the masthead */
|
|
font-style: italic;
|
|
}
|
|
|
|
P.entrydate { /* Used for time and date stamps on blog entries */
|
|
font-size: 0.7em;
|
|
margin-top: -0.2em;
|
|
}
|
|
|
|
P.entrytext { /* Used for blog entries, will normally be default */
|
|
margin-top: 0em;
|
|
margin-bottom: 20em;
|
|
}
|
|
|
|
P.menuhead {
|
|
font-weight: bold;
|
|
margin-top: 0.8em;
|
|
margin-bottom: 0.3em;
|
|
color: white;
|
|
}
|
|
|
|
P.menusubhead {
|
|
font-weight: bold;
|
|
font-size: 0.9em;
|
|
margin-top: 0.6em;
|
|
margin-bottom: 0.2em;
|
|
}
|
|
|
|
P.menuoption { /* Sidebar menu options */
|
|
font-size: 0.9em;
|
|
margin-left: 0.5em;
|
|
margin-top: -0.3em;
|
|
margin-bottom: 0.2em;
|
|
}
|
|
|
|
A {
|
|
text-decoration: none;
|
|
}
|
|
|
|
A:link {
|
|
color: #0000FF;
|
|
}
|
|
|
|
A:visited {
|
|
color: #9932CC;
|
|
}
|
|
|
|
A:hover {
|
|
color: #FF6347;
|
|
text-decoration: underline;
|
|
}
|
|
|
|
TD.sidebar A {
|
|
text-decoration: none;
|
|
}
|
|
|
|
TD.sidebar A:link {
|
|
color: #EEA000;
|
|
}
|
|
|
|
TD.sidebar A:visited {
|
|
color: #FFBB00;
|
|
}
|
|
|
|
TD.sidebar A:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
TABLE.layout {
|
|
width: 100%;
|
|
}
|
|
|
|
.blog {
|
|
vertical-align: top;
|
|
}
|
|
|
|
|
|
TD.entryhead {
|
|
vertical-align: top;
|
|
text-align: right;
|
|
border-top: thin solid lightgrey;
|
|
padding: 5px 5px 5px 5px;
|
|
}
|
|
|
|
TD.entrytext {
|
|
vertical-align: top;
|
|
text-align: left;
|
|
border-top: thin solid lightgrey;
|
|
padding: 5px 5px 5px 5px;
|
|
}
|
|
|
|
TD.sidebar {
|
|
vertical-align: top;
|
|
text-align: left;
|
|
font-size: 0.9em;
|
|
padding: 5px 5px 5px 5px;
|
|
background-color: #5B69A6;
|
|
}
|
|
|