]> git.deb.at Git - debienna.git/commitdiff
creating a very basic structure for the html template
authorSebastian Bachmann <me@free-minds.net>
Mon, 15 Apr 2013 18:45:09 +0000 (20:45 +0200)
committerSebastian Bachmann <me@free-minds.net>
Mon, 15 Apr 2013 18:45:09 +0000 (20:45 +0200)
index.mdwn
local.css [new file with mode: 0644]

index 0e1c6e835c7cf804edb9573d0ccd1d62d881d1f0..4311d3fab3907d5fa4eef9efbece4e4cfc707239 100644 (file)
@@ -1,7 +1,9 @@
-<table markdown="1">
-<tr><td valign="top">
-[[!inline pages="StartSeite/L*" sort=title raw=yes]]
-</td><td valign="top">
-[[!inline pages="Kalender/* and !Kalender/*/*" show=2]]
-[[!inline pages="StartSeite/R*" sort=title raw=yes]]
-</td></tr></table>
+<div class="contentwrapper" markdown="1">
+       <div class="column-left">
+       [[!inline pages="StartSeite/L*" sort=title raw=yes]]
+       </div>
+       <div class="column-right">
+       [[!inline pages="Kalender/* and !Kalender/*/*" show=2]]
+       [[!inline pages="StartSeite/R*" sort=title raw=yes]]
+       </div>
+</div>
diff --git a/local.css b/local.css
new file mode 100644 (file)
index 0000000..0785753
--- /dev/null
+++ b/local.css
@@ -0,0 +1,28 @@
+.contentwrapper{
+       width: 960px;
+       margin: 0 auto;
+
+}
+
+.column-left{
+       float: left;
+       width: 500px;
+       background-color: #DDDDDD;
+       padding: 10px;
+}
+
+.column-right{
+       float: right;
+       width: 400px;
+       background-color: #DDDDDD;
+       padding: 10px;
+}
+
+
+/*Adjustment of textAdjustment of text */  
+h1, h2, h3, .title{
+       color: #D70A53;
+}
+
+.title {
+}