kwotes/templates/default/kwotes.css

198 lines
2.3 KiB
CSS
Raw Normal View History

2004-11-02 01:40:14 +00:00
body
{
2005-08-15 23:17:45 +00:00
font-family: "Trebuchet MS", Tahoma, Arial, Sans-Serif;
2004-11-02 01:40:14 +00:00
margin: 0px;
}
a:link
{
2005-08-15 23:17:45 +00:00
color: #ff6103;
2004-11-02 01:40:14 +00:00
text-decoration: none;
}
a:visited
{
2005-08-15 23:17:45 +00:00
color: #ff6103;
2004-11-02 01:40:14 +00:00
text-decoration: none;
}
2005-08-15 23:17:45 +00:00
a:hover
2004-11-02 01:40:14 +00:00
{
2005-08-15 23:17:45 +00:00
color: #f00;
2004-11-02 01:40:14 +00:00
text-decoration: underline;
}
2005-08-15 23:17:45 +00:00
a:active
{
color: #f00;
text-decoration: underline;
}
img
2004-11-02 01:40:14 +00:00
{
border: 0px;
}
/* Containers */
2005-08-15 23:17:45 +00:00
#container
2004-11-02 01:40:14 +00:00
{
position: relative;
width: 700px;
margin-left: auto;
margin-right: auto;
}
/* Header Section */
2005-08-15 23:17:45 +00:00
#searchbox
2004-11-02 01:40:14 +00:00
{
float: right;
2005-08-15 23:17:45 +00:00
margin-bottom: 2px;
2004-11-02 01:40:14 +00:00
}
2005-08-15 23:17:45 +00:00
#searchbox input
2004-11-02 01:40:14 +00:00
{
height: 16px;
border: solid 1px black;
padding-left: 3px;
}
2005-08-15 23:17:45 +00:00
#title
{
font-weight:normal;
font-size: large;
font-family: Tahoma;
margin-bottom: 0px;
}
/* Footer */
#footer
{
font-size: 0.85em;
}
#footer a
{
margin-right: 10px;
color: #000;
text-decoration: none;
}
#footer a:hover
{
color: #f00;
text-decoration: underline;
}
/* Search */
.note
2004-11-02 01:40:14 +00:00
{
2005-08-15 23:17:45 +00:00
font-size: small;
color: Red;
2004-11-02 01:40:14 +00:00
}
/* Kwotes */
2005-08-15 23:17:45 +00:00
.kwoteeven, .kwoteodd
2004-11-02 01:40:14 +00:00
{
position: relative;
2005-08-15 23:17:45 +00:00
border: 1px solid black;
2004-11-02 01:40:14 +00:00
}
2005-08-15 23:17:45 +00:00
.kwoteeven
{
2005-08-15 23:17:45 +00:00
background-color: #eee;
}
.kwoteeven + .kwoteodd, .kwoteodd + .kwoteeven
{
margin-top: 10px;
}
.kwoteeven p, .kwoteodd p
{
clear: both;
font-size: 1em;
padding-left: 5px;
}
.kwoteid:link
2004-11-02 01:40:14 +00:00
{
float: left;
2005-08-15 23:17:45 +00:00
font-size: 0.9em;
padding-left: 5px;
color: #000;
text-decoration: none;
}
.kwoteid:hover
2005-08-15 23:17:45 +00:00
{
color: #f00;
text-decoration: underline;
2004-11-02 01:40:14 +00:00
}
2005-08-15 23:17:45 +00:00
.votecontrols
2004-11-02 01:40:14 +00:00
{
float: right;
2005-08-15 23:17:45 +00:00
font-size: 0.9em;
2004-11-02 01:40:14 +00:00
padding: 0px;
2005-08-15 23:17:45 +00:00
padding-right: 2px;
2004-11-02 01:40:14 +00:00
}
2005-08-15 23:17:45 +00:00
.votecontrols a
2004-11-02 01:40:14 +00:00
{
2005-08-15 23:17:45 +00:00
font-size: 1.35em;
2004-11-02 01:40:14 +00:00
font-weight: bolder;
2005-08-15 23:17:45 +00:00
color: #000;
2004-11-02 01:40:14 +00:00
text-decoration: none;
padding: 0px 1px 0px 1px;
}
2005-08-15 23:17:45 +00:00
.votecontrols a:hover
2004-11-02 01:40:14 +00:00
{
2005-08-15 23:17:45 +00:00
color: #f00;
2004-11-02 01:40:14 +00:00
}
2005-08-15 23:17:45 +00:00
/* Next and Back links */
.kwotenavigation a
2004-11-02 01:40:14 +00:00
{
2005-08-15 23:17:45 +00:00
text-decoration: none;
2004-11-02 01:40:14 +00:00
}
2005-08-15 23:17:45 +00:00
.kwotenavigation a:hover
2004-11-02 01:40:14 +00:00
{
2005-08-15 23:17:45 +00:00
text-decoration: underline;
2004-11-02 01:40:14 +00:00
}
/* Horizontal Menu */
2005-08-15 23:17:45 +00:00
.tabmenu
2004-11-02 01:40:14 +00:00
{
margin: 0px;
padding: 0px;
position: relative;
list-style-type: none;
width: 100%;
}
2005-08-15 23:17:45 +00:00
.tabmenu a
2004-11-02 01:40:14 +00:00
{
2005-08-15 23:17:45 +00:00
/* This must be marked as important or IE ignores it. */
color: #000 ! important;
text-decoration: none;
2004-11-02 01:40:14 +00:00
}
2005-08-15 23:17:45 +00:00
.tabmenu a:hover
2004-11-02 01:40:14 +00:00
{
2005-08-15 23:17:45 +00:00
/* This must be marked as important.
The above important rule causes all browsers to ignore this otherwise. */
color: #f00 ! important;
text-decoration: underline;
2004-11-02 01:40:14 +00:00
}
2005-08-15 23:17:45 +00:00
.tabmenu .tab
2004-11-02 01:40:14 +00:00
{
2005-08-15 23:17:45 +00:00
display: table-cell;
margin: 0px;
padding-left: 5px;
padding-right: 5px;
font-size: 0.85em;
}