From a77d63fd3ce1e93a554b62e6f63646f1fb568ecb Mon Sep 17 00:00:00 2001
From: lpouzenc <lpouzenc@gmail.com>
Date: Thu, 28 Nov 2013 13:11:58 +0100
Subject: Import initial

---
 templates/default/images/background.png            | Bin 0 -> 251 bytes
 .../default/images/external-link-ltr-icon.png      | Bin 0 -> 279 bytes
 templates/default/layout-article.php               |  17 +++++
 templates/default/screen.css                       |  79 +++++++++++++++++++++
 4 files changed, 96 insertions(+)
 create mode 100644 templates/default/images/background.png
 create mode 100644 templates/default/images/external-link-ltr-icon.png
 create mode 100644 templates/default/layout-article.php
 create mode 100644 templates/default/screen.css

(limited to 'templates')

diff --git a/templates/default/images/background.png b/templates/default/images/background.png
new file mode 100644
index 0000000..64ece57
Binary files /dev/null and b/templates/default/images/background.png differ
diff --git a/templates/default/images/external-link-ltr-icon.png b/templates/default/images/external-link-ltr-icon.png
new file mode 100644
index 0000000..4b710b0
Binary files /dev/null and b/templates/default/images/external-link-ltr-icon.png differ
diff --git a/templates/default/layout-article.php b/templates/default/layout-article.php
new file mode 100644
index 0000000..522bb86
--- /dev/null
+++ b/templates/default/layout-article.php
@@ -0,0 +1,17 @@
+<div id="main">
+<div id="tree-div"></div>
+<h1 id="title"><?=$page_props['title']?></h1>
+<div id="bodyContent">
+
+<div id="teaser" class="shorttext">
+<?php include("div-teaser.html"); ?>
+</div>
+
+<div id="content" class="article">
+<?php include("div-article.html"); ?>
+</div>
+
+</div>
+</div>
+</div>
+
diff --git a/templates/default/screen.css b/templates/default/screen.css
new file mode 100644
index 0000000..cec5b0a
--- /dev/null
+++ b/templates/default/screen.css
@@ -0,0 +1,79 @@
+body {
+  font-family: sans-serif;
+}
+
+body {
+  background-image: url("images/background.png");
+}
+
+#bodyContent {
+	font-size:0.8em;
+}
+
+h1, h2, h3, h4, h5, h6 {
+  font-family: sans-serif;
+  color: #1c94c4;
+  border-bottom:1px solid #AAAAAA;
+  padding-bottom:0.17em;
+  padding-top:0.5em;
+}
+
+h1 { font-size: 188%; }
+h2 { font-size: 150%; }
+h3 { font-size: 132%; }
+h4 { font-size: 116%; }
+h5 { font-size: 100%; }
+h6 { font-size: 80%;  }
+
+#main {
+  width: 50%;
+  position: absolute;
+  top: 10%;
+  left: 25%;
+  padding: 30px;
+  background-color: white;
+  border-radius: 10px;
+  color: #444444;
+  -moz-border-radius: 10px;
+  box-shadow: 5px 5px rgba(0,0,0,0.3);
+  -webkit-box-shadow: 5px 5px rgba(0,0,0,0.3);
+  -moz-box-shadow: 5px 5px rgba(0,0,0,0.3);
+}
+
+a.aloha {
+  background: url(images/external-link-ltr-icon.png) no-repeat 100% 50%;
+  padding: 0px 13px 0px 0px;
+}
+
+/* Abbreviation styling */
+abbr, acronym
+{
+	border-bottom: .1em dotted;
+	cursor: help;
+}
+
+/* A basic table styling */
+table
+{
+  padding: 0;
+  margin: 0;
+  border-collapse: collapse;
+  border: 1px solid #333;
+  color: #000;
+}
+
+table caption
+{
+  caption-side: bottom;
+  font-size: 0.8em;
+  font-style: italic;
+  text-align: right;
+  padding: 0.5em 0;
+}
+
+table th, table td
+{
+  border: 1px solid #666;
+  padding: 0.5em;
+  text-align: left;
+}
\ No newline at end of file
-- 
cgit v1.2.3