CSS (kaskádové styly)
Součástí každého vzhledu bývá css soubor definující zobrazení jednotlivých prvků na stránce, počínaje barvou odkazů až třeba po pozadí textového pole.
Do našeho vzhledu si můžeme dát třeba nějaký se základním definováním.
(I když sem se s tím moc nemazal, myslím si že se mi to povedlo ;-))
Umístěný by měl být na adrese: web/themes/Grey/style/style.css (Grey je název našeho vzhledu v tomto příkladu)
/* Valid CSS information */
/* Theme Classes */
FONT, TD, BODY, P, DIV {
font-family : Arial, sans-serif;
font-size : 12px;
}
INPUT, SELECT, TEXTAREA, FORM {
font-family : Arial, sans-serif;
font-size : 11px;
}
a {
font-family : Arial, sans-serif;
color : #696969;
text-decoration : none;
}
a:active {
font-family : Arial, sans-serif;
color : #696969;
text-decoration : none;
}
a:visited {
font-family : Arial, sans-serif;
color : #696969;
text-decoration : none;
}
a:hover {
font-family : Arial, sans-serif;
color : #ffffff;
text-decoration : none;
}
a.header {
font-family : Arial, sans-serif;
color : #ffffff;
text-decoration : none;
}
a.header:active {
font-family : Arial, sans-serif;
color : #ffffff;
text-decoration : none;
}
a.header:visited {
font-family : Arial, sans-serif;
color : #ffffff;
text-decoration : none;
}
a.header:hover {
font-family : Arial, sans-serif;
color : #dcdcdc;
text-decoration : none;
}
/* United-Nuke Classes */
.title {
font-family : Arial, sans-serif;
background : none;
color : #000000;
font-size : 16px;
font-weight : bold;
text-decoration : none;
}
.storytitle {
font-family : Arial, sans-serif;
background-color : #dcdcdc;
color : #696969;
font-size : 13px;
font-weight : bold;
}
.content {
font-family : Arial, sans-serif;
background-color : transparent;
color : #000000;
font-size : 12px;
}
.storycat {
font-family : Arial, sans-serif;
background : none;
color : #000000;
font-size : 13px;
font-weight : bold;
text-decoration : none;
}
.boxtitle {
font-family : Arial, sans-serif;
background-color : #c2c2c2;
color : #000000;
font-size : 12px;
font-weight : bold;
}
.boxcontent {
font-family : Arial, sans-serif;
background-color : #dcdcdc;
color : #696969;
font-size : 11px;
}
.blockitem {
font-family : Arial, sans-serif;
background-color : #dcdcdc;
color : #696969;
font-size : 12px;
}
.option {
font-family : Arial, sans-serif;
background : none;
color : #000000;
font-size : 14px;
font-weight : bold;
text-decoration : none;
}
.tiny {
font-family : Arial, sans-serif;
background : none;
color : #000000;
font-size : 10px;
font-weight : normal;
text-decoration : none;
}
/* Quote & Code blocks */
.code {
font-family : Courier, 'Courier New', sans-serif;
font-size : 11px;
color : #006600;
background-color : #fafafa;
border : #d1d7dc;
border-style : solid;
border-left-width : 1px;
border-top-width : 1px;
border-right-width : 1px;
border-bottom-width : 1px;
}