websites.concatenative: move container div to page.xml.

flac
John Benediktsson 2020-02-27 15:11:55 -08:00 committed by Steve Ayerhart
parent 7b28dc28a9
commit c2c6febce3
No known key found for this signature in database
GPG Key ID: 5BFD39C5359E967D
9 changed files with 90 additions and 114 deletions

View File

@ -6,8 +6,6 @@
<t:style t:include="resource:extra/webapps/pastebin/pastebin.css" />
<div id="container">
<div class="navbar">
<t:a t:href="$pastebin">Pastes</t:a>
@ -32,5 +30,4 @@
<t:call-next-template />
</div>
</div>
</t:chloe>

View File

@ -1,11 +1,3 @@
body {
margin: 0;
}
#container {
max-width: 1000px;
}
.page {
padding-left: 15px;
padding-right: 15px;

View File

@ -4,8 +4,6 @@
<t:style t:include="resource:extra/webapps/planet/planet.css" />
<div id="container">
<div class="navbar">
<t:a t:href="$planet">Front Page</t:a>
<t:a t:href="$planet/feed.xml">Atom Feed</t:a>
@ -29,5 +27,4 @@
<t:call-next-template />
</div>
</div>
</t:chloe>

View File

@ -1,11 +1,3 @@
body {
margin: 0;
}
#container {
max-width: 1000px;
}
.page {
padding-left: 15px;
padding-right: 15px;

View File

@ -8,8 +8,6 @@
<t:style t:include="resource:extra/webapps/wiki/wiki.css" />
<div id="container">
<div id="left">
<t:if t:value="contents">
@ -70,6 +68,4 @@
<span style="display:none"></span>
</div>
</t:chloe>

View File

@ -1,10 +1,10 @@
#left {
float: left;
width: 180px;
width: 200px;
border-right: 1px solid #ccc;
background: #f3f2ea;
}
#right {
margin-left: 180px;
margin-left: 200px;
}

View File

@ -1,18 +1,9 @@
body {
margin: 0;
}
#container {
margin: 0 auto;
width: 100%;
}
#left {
width: 0;
}
#right {
max-width: 800px;
width: 800px;
}
.comparison th {
@ -56,18 +47,17 @@ body {
}
.contents {
font-size: smaller;
font-size: 90%;
margin: 0;
padding: 0;
padding-left: 10px;
padding-right: 10px;
line-height: 125%;
}
.contents ul {
list-style-type: none;
margin: 0;
padding-left: 10px;
padding-left: 20px;
}
.page {

View File

@ -6,6 +6,10 @@ html {
box-sizing: inherit;
}
body {
margin: 0;
}
body, button {
font-size: 12pt;
font-family: sans-serif;
@ -31,6 +35,10 @@ a, .link { color: #104e8b; }
a:link, a:visited, a:active, .link { text-decoration: none; }
a:hover, .link:hover { text-decoration: underline; }
#container {
max-width: 1000px;
}
.error { color: #a00; }
.errors li { color: #a00; }

View File

@ -17,7 +17,11 @@
</head>
<body>
<div id="container">
<t:call-next-template />
</div>
</body>
</t:chloe>