MediaWiki:Print.css: Unterschied zwischen den Versionen
Admin (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „→CSS an dieser Stelle wirkt sich auf die Druckausgabe aus: →CSS für die Hauptseite!: .orange { color: orange; } .page-Hauptseite h2 { border-bottom: non…“) |
Admin (Diskussion | Beiträge) |
||
Zeile 55: | Zeile 55: | ||
float:left; | float:left; | ||
margin:-2px 14px 0px; | margin:-2px 14px 0px; | ||
+ | } | ||
+ | |||
+ | /*Für die Portalseite, damit Bilder verlinkt werden können*/ | ||
+ | |||
+ | .imagelink_wienportal a { | ||
+ | width:400px; | ||
+ | height:250px; | ||
+ | display:block; | ||
+ | text-decoration:none; | ||
+ | background-image: url("http://kiwithek.kidsweb.at/images/Wien.png") | ||
+ | } | ||
+ | |||
+ | .imagelink_sportportal a { | ||
+ | width:400px; | ||
+ | height:250px; | ||
+ | display:block; | ||
+ | text-decoration:none; | ||
+ | background-image: url("http://kiwithek.kidsweb.at/images/Startbild_sport.png") | ||
+ | } | ||
+ | |||
+ | .imagelink_kulturportal a { | ||
+ | width:400px; | ||
+ | height:250px; | ||
+ | display:block; | ||
+ | text-decoration:none; | ||
+ | background-image: url("http://kiwithek.kidsweb.at/images/Startbild_kunst_kultur.png") | ||
} | } |
Version vom 6. November 2009, 14:02 Uhr
/* CSS an dieser Stelle wirkt sich auf die Druckausgabe aus */
/*CSS für die Hauptseite!*/
.orange {
color: orange;
}
.page-Hauptseite h2 {
border-bottom: none;
font-size: 250%;
padding-top: 0.2em;
padding-bottom: 0;
}
/*Anders übernimmt er bei h3 den margin-bottom: 0 leider nicht*/
#bodyContent div.hauptseite-artikel h3{
margin-bottom: 0;
}
.hauptseite-artikel h3 {
font-weight: normal;
font-size: 116%;
border-bottom:1px solid steelBlue;
padding-bottom: 0.2em;
padding-top: 0.2em;
padding-left: 0.4em;
height: 50px;
}
.hauptseite-artikel {
border:1px solid steelBlue;
float:left;
margin-bottom: 10px;
margin-right: 10px;
width: 48.2%;
}
.hauptseite-artikel p{
margin:2px;
padding-left:55px;
}
.hauptseite-artikel p.naturtext{
margin-top: -4px;
padding-left: 0;
float:left;
margin-bottom: -4px;
}
.hauptseite-artikel div.natur{
line-height: 1.3;
padding-left: 0;
float:left;
margin:-2px 14px 0px;
}
/*Für die Portalseite, damit Bilder verlinkt werden können*/
.imagelink_wienportal a {
width:400px;
height:250px;
display:block;
text-decoration:none;
background-image: url("http://kiwithek.kidsweb.at/images/Wien.png")
}
.imagelink_sportportal a {
width:400px;
height:250px;
display:block;
text-decoration:none;
background-image: url("http://kiwithek.kidsweb.at/images/Startbild_sport.png")
}
.imagelink_kulturportal a {
width:400px;
height:250px;
display:block;
text-decoration:none;
background-image: url("http://kiwithek.kidsweb.at/images/Startbild_kunst_kultur.png")
}