datenspuren: new site width system, fahrplan is now bigger than rest

This commit is contained in:
payload 2011-09-29 22:14:40 +02:00
parent c022afc407
commit 8b2a8cc7c3
2 changed files with 24 additions and 3 deletions

View File

@ -1,7 +1,6 @@
body { body {
font-family: sans-serif; font-family: sans-serif;
margin: 12pt auto; margin: 12pt auto;
width: 900px;
} }
#cloudy { #cloudy {
background: url("../images/cloudy.png"); background: url("../images/cloudy.png");
@ -62,6 +61,19 @@ body {
border-radius: 24pt; border-radius: 24pt;
background: rgba(255,255,255,0.65); background: rgba(255,255,255,0.65);
min-height: 400px; min-height: 400px;
display: inline-block;
}
#ct0, #ct1, #ct2 {
display: table-cell;
}
#ct0 {
width: 50%;
}
#ct1 {
width: auto;
}
#ct2 {
width: 50%;
} }
.leftSideBar { .leftSideBar {
float: left; float: left;
@ -97,6 +109,10 @@ a {
padding: 0 24pt 24pt; padding: 0 24pt 24pt;
} }
#bodyText > div { #bodyText > div {
min-width: 800px;
}
#bodyText > .schedule {
width: auto;
} }
h1, h2, h3, dt { h1, h2, h3, dt {
font-weight: bolder; font-weight: bolder;
@ -253,3 +269,4 @@ dl dd {
display: inline; display: inline;
padding-right: 1em; padding-right: 1em;
} }

View File

@ -41,19 +41,23 @@
<xsl:text> </xsl:text> <xsl:text> </xsl:text>
</div></a> </div></a>
</div> </div>
<div id="ct0">&#8203;</div>
<div id="ct1">
<div id="content"> <div id="content">
<div id="cloudy"> <div id="cloudy">
<div id="cloudy-sun" title="Click here!"> <div id="cloudy-sun" title="Click here!">
<xsl:text> </xsl:text> <xsl:text> </xsl:text>
</div> </div>
</div> </div>
<xsl:call-template name="heading"> <xsl:call-template name="heading">
<xsl:with-param name="title" select="$title"/> <xsl:with-param name="title" select="$title"/>
</xsl:call-template> </xsl:call-template>
<div id="bodyText"><div> <div id="bodyText"><div>
<xsl:apply-templates/> <xsl:apply-templates/>
</div></div> </div></div>
</div> </div> <!-- content -->
</div> <!-- ct1 -->
<div id="ct2">&#8203;</div>
<xsl:call-template name="footer"/> <xsl:call-template name="footer"/>
</body> </body>
</html> </html>