52 lines
883 B
CSS
52 lines
883 B
CSS
/*
|
|
* Penguin Common Theme
|
|
*
|
|
* @author: Dorian Pula
|
|
* @company: Amber Penguin Software
|
|
* @note: The common elements of both the Penguin Daytime and Evening CSS themes.
|
|
* @version: 0.8
|
|
*/
|
|
|
|
/*** Header setup ***/
|
|
img.header_logo {
|
|
height: 128px;
|
|
}
|
|
|
|
h1.header_title {
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
|
|
font-family: "Lavoir";
|
|
font-size: 20pt;
|
|
font-weight: normal;
|
|
font-style: normal;
|
|
}
|
|
|
|
h2.header_tagline {
|
|
font-size: 12pt;
|
|
font-family: "Consola Mono", monospace;
|
|
text-align: center;
|
|
}
|
|
|
|
/* TODO Comment and clean up. */
|
|
|
|
/*** Messages ***/
|
|
div.error_message {
|
|
color: #FF0000;
|
|
font-weight: bold;
|
|
}
|
|
|
|
div.notification_message {
|
|
color: #00FF00;
|
|
font-weight: bold;
|
|
}
|
|
|
|
form > ul > li {
|
|
display: list-item;
|
|
list-style: none;
|
|
padding: 5px 15px;
|
|
}
|
|
|
|
/*form > ul > li > input {*/
|
|
/*text-align: right;*/
|
|
/*}*/ |