aboutsummaryrefslogtreecommitdiff
path: root/ratatoeskr/cms_style
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2011-10-05 14:36:01 +0200
committerKevin Chabowski <kevin@kch42.de>2011-10-05 14:36:01 +0200
commit0f185543bb9851fddc137f81a1e2a1d21589bc83 (patch)
treec9a3c56ba2166defac508f8d1c67ef81fe4e9789 /ratatoeskr/cms_style
parentafe436b25dd935aa2ae3a327027ea04b3c82e5ac (diff)
downloadratatoeskr-cms-0f185543bb9851fddc137f81a1e2a1d21589bc83.tar.gz
ratatoeskr-cms-0f185543bb9851fddc137f81a1e2a1d21589bc83.tar.bz2
ratatoeskr-cms-0f185543bb9851fddc137f81a1e2a1d21589bc83.zip
Backend, frontend and 404 handlers partially implemented.
* Backend layout done. * Frontend theoretically done (untested). * 404 handler done * Added textprocessors.php
Diffstat (limited to 'ratatoeskr/cms_style')
-rw-r--r--ratatoeskr/cms_style/images/dead_emoticon.pngbin0 -> 230 bytes
-rw-r--r--ratatoeskr/cms_style/layout.css156
2 files changed, 156 insertions, 0 deletions
diff --git a/ratatoeskr/cms_style/images/dead_emoticon.png b/ratatoeskr/cms_style/images/dead_emoticon.png
new file mode 100644
index 0000000..1a07509
--- /dev/null
+++ b/ratatoeskr/cms_style/images/dead_emoticon.png
Binary files differ
diff --git a/ratatoeskr/cms_style/layout.css b/ratatoeskr/cms_style/layout.css
new file mode 100644
index 0000000..42ea1bc
--- /dev/null
+++ b/ratatoeskr/cms_style/layout.css
@@ -0,0 +1,156 @@
+* {
+ font-family: sans-serif;
+ font-size: 10pt;
+}
+
+body, html {
+ margin: 0px;
+ padding:0px;
+}
+
+#bar_top {
+ margin: 0px;
+ position: fixed;
+ top: 0px;
+ left: 0px;
+ width: 100%;
+ background: black;
+ padding: 3px 15px 3px;
+ color: #ddd;
+ z-index: 1000;
+}
+#bar_top .user {
+ text-align: right;
+ position: absolute;
+ right: 45px;
+}
+
+#bar_top strong {
+ color: white;
+}
+
+#bar_top a {
+ color: #ddd;
+ text-decoration: underline;
+}
+
+#bar_top a:hover {
+ color: #fff;
+}
+
+#maincontainer {
+ position: absolute;
+ width: 95%;
+ left: 2.5%;
+ margin: 2.5em 0em 2em;
+ padding: 0px;
+}
+
+#mainmenu {
+ float:left;
+ width: 55mm
+}
+
+#mainmenu, #mainmenu ul {
+ padding: 0px;
+ margin: 0px;
+ list-style: none;
+}
+
+#mainmenu ul {
+ display: none;
+}
+
+#mainmenu ul.active {
+ display: block;
+}
+
+#mainmenu li {
+ font-size: 12pt;
+}
+
+#mainmenu li a {
+ padding: 0.5ex 2mm 0.5ex 2mm;
+ border-top: 1px solid #eee;
+ font-size: 12pt;
+ color: #666;
+ text-decoration: none;
+ display:block;
+}
+
+#mainmenu li a.first {
+ border: none;
+}
+
+#mainmenu ul li a {
+ padding: 0.5ex 0px 0.5ex 7mm;
+}
+
+#mainmenu li a.active {
+ color: black;
+}
+
+#mainmenu li a:hover {
+ color: black;
+ background: #eee;
+}
+
+#content {
+ padding: 0mm 0mm 0mm 60mm;
+}
+
+h1 {
+ font-size: 14pt;
+ font-weight: normal;
+ margin: 0mm auto 1.5em;
+ color: #333;
+ text-align: center;
+ padding: 0px 0px 5px 0px;
+ border-bottom: 1px solid #eee;
+ /*background: url(images/hline.png) no-repeat bottom center;*/
+ min-width: 300px;
+}
+
+code, code pre {
+ font-family: monospace;
+ background: #eee;
+}
+
+h1 strong {
+ font-size: 14pt;
+ font-weight: bold;
+ color: black;
+}
+
+h2 {
+ font-size: 11pt;
+ font-weight: bold;
+}
+
+.triplecolumns .column_left{
+ float: left;
+ width: 50mm;
+ margin: 0px;
+ padding: 0px;
+}
+
+.triplecolumns .column_right {
+ float: right;
+ width: 50mm;
+ margin: 0px;
+ padding: 0px;
+}
+
+.triplecolumns .column_main {
+ margin: 0mm;
+ padding: 0mm 55mm 0mm;
+}
+
+.triplecolumns_stop {
+ clear: both;
+}
+
+form.fullwidthinputs input[type="text"], form.fullwidthinputs input[type="password"], form.fullwidthinputs select, form.fullwidthinputs textarea {
+ width: 100%;
+ margin:0mm;
+}