aboutsummaryrefslogtreecommitdiff
path: root/ratatoeskr/cms_style
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2011-09-21 17:00:50 +0200
committerKevin Chabowski <kevin@kch42.de>2011-09-21 17:00:50 +0200
commit8311cba002dfcaf1836530b978f944f7228ac004 (patch)
treed8ff9eac15957194a53e4c6e94d4bd9eb2d89c2d /ratatoeskr/cms_style
parenta85e1fbbfbbaef176141e98a4691273cd06d0a65 (diff)
downloadratatoeskr-cms-8311cba002dfcaf1836530b978f944f7228ac004.tar.gz
ratatoeskr-cms-8311cba002dfcaf1836530b978f944f7228ac004.tar.bz2
ratatoeskr-cms-8311cba002dfcaf1836530b978f944f7228ac004.zip
Replaced Smarty with STE and started the backend.
Diffstat (limited to 'ratatoeskr/cms_style')
-rw-r--r--ratatoeskr/cms_style/images/black_transparent.pngbin0 -> 178 bytes
-rw-r--r--ratatoeskr/cms_style/images/login_bg.jpgbin0 -> 66962 bytes
-rw-r--r--ratatoeskr/cms_style/login.css119
3 files changed, 119 insertions, 0 deletions
diff --git a/ratatoeskr/cms_style/images/black_transparent.png b/ratatoeskr/cms_style/images/black_transparent.png
new file mode 100644
index 0000000..bfe2e3a
--- /dev/null
+++ b/ratatoeskr/cms_style/images/black_transparent.png
Binary files differ
diff --git a/ratatoeskr/cms_style/images/login_bg.jpg b/ratatoeskr/cms_style/images/login_bg.jpg
new file mode 100644
index 0000000..e24fd8f
--- /dev/null
+++ b/ratatoeskr/cms_style/images/login_bg.jpg
Binary files differ
diff --git a/ratatoeskr/cms_style/login.css b/ratatoeskr/cms_style/login.css
new file mode 100644
index 0000000..3e756ca
--- /dev/null
+++ b/ratatoeskr/cms_style/login.css
@@ -0,0 +1,119 @@
+* {
+ font-family: sans-serif;
+ font-size: 10pt;
+}
+
+body, html {
+ margin: 0px;
+ padding:0px;
+}
+
+#main {
+ margin: 0px;
+ padding: 0px;
+ width: 100%;
+ height: 100%;
+ z-index: 1;
+ position: absolute;
+}
+
+#background_image {
+ position: absolute;
+ left: 0px;
+ top:0px;
+ z-index: 0;
+ width: 100%;
+ height: 100%;
+ margin: 0px;
+ padding: 0px;
+}
+
+#bar_top {
+ margin: 0px;
+ position: fixed;
+ top: 0px;
+ left: 0px;
+ width: 100%;
+ background: black;
+ padding: 3px 15px 3px;
+ color: #ddd;
+}
+
+#bar_top strong {
+ color: white;
+}
+
+#image_copyright {
+ margin: 0px;
+ position: fixed;
+ bottom: 0px;
+ left: 0px;
+ width: 100%;
+ background: black;
+ padding: 3px 15px 3px;
+ color: #ddd;
+}
+
+#image_copyright a {
+ color: #ddd;
+ text-decoration: underline;
+}
+
+#image_copyright a:hover {
+ color: white;
+}
+
+.vcenter_outer {
+ position: absolute;
+ height: 100%;
+ display: table;
+ width: 100%;
+}
+
+.vcenter_inner {
+ display: table-cell;
+ vertical-align: middle;
+ text-align: center;
+ width: 100%;
+}
+
+#login_box {
+ position: relative;
+ padding: 15px 20px 15px;
+ margin-left: 25%;
+ width: 50%;
+ background: url(images/black_transparent.png) repeat;
+}
+
+h1 {
+ font-size: 14pt;
+ color: white;
+}
+
+#login_box p {
+ color: white;
+ text-align: left;
+ clear: both;
+}
+
+#login_box p input {
+ float: right;
+}
+
+#login_box p.loginbtn {
+ text-align: center;
+}
+
+#login_box p.loginbtn input {
+ float: none;
+}
+
+div.error {
+ position: relative;
+ width: 100%;
+ padding: 10px 0px 10px;
+ margin: none;
+ color: red;
+ text-align: center;
+ background: #fbb;
+}