summaryrefslogtreecommitdiffstats
path: root/www/simple
diff options
context:
space:
mode:
authorMika Havela <mika.havela@gmail.com>2007-12-20 14:16:01 +0000
committerMika Havela <mika.havela@gmail.com>2007-12-20 14:16:01 +0000
commita1428ac882145946b7df22a8a64065b6ecba9f3b (patch)
treeb06a28e590bd88c053dd90f5e50cea67dd356c24 /www/simple
parent1229f025db71c5fa0d4965f79d8807826e66e8fc (diff)
downloadacf-core-a1428ac882145946b7df22a8a64065b6ecba9f3b.tar.bz2
acf-core-a1428ac882145946b7df22a8a64065b6ecba9f3b.tar.xz
Changed the simple skin to be more usable as a demo-skin when creating new skins
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@436 ab2d0c66-481e-0410-8bed-d214d4d58bed
Diffstat (limited to 'www/simple')
-rw-r--r--www/simple/simple.css102
1 files changed, 102 insertions, 0 deletions
diff --git a/www/simple/simple.css b/www/simple/simple.css
index e69de29..c2eb804 100644
--- a/www/simple/simple.css
+++ b/www/simple/simple.css
@@ -0,0 +1,102 @@
+/* -----------------------------------------------------------------------------------------------
+ GENERAL
+ -----------------------------------------------------------------------------------------------*/
+a {
+ color: white;
+}
+a:visited {
+ color: white;
+}
+a:hover {
+ color: red;
+}
+h1 {
+ background: #755;
+}
+h2 {
+ background: #866;
+}
+h3 {
+ background: #977;
+}
+select, textarea {
+ width: 600px;
+}
+textarea {
+ height: 100px;
+}
+/* -----------------------------------------------------------------------------------------------
+ BODY
+ -----------------------------------------------------------------------------------------------*/
+body {
+ background: black;
+ font-family: arial,verdana;
+ color: white;
+}
+
+/* -----------------------------------------------------------------------------------------------
+ PAGE
+ -----------------------------------------------------------------------------------------------*/
+#page {
+ background: #333;
+}
+
+/* -----------------------------------------------------------------------------------------------
+ HEADER (and its components)
+ -----------------------------------------------------------------------------------------------*/
+#header {
+ background: #444;
+}
+#header #version {
+ background: #555;
+ font-size: 12px;
+}
+#header ul#metanav {
+ background: #666;
+}
+#header ul#metanav li {
+ display: inline;
+}
+
+/* -----------------------------------------------------------------------------------------------
+ CONTENT (and its components)
+ -----------------------------------------------------------------------------------------------*/
+#content { /* 'content' is both the wrapper and the navmenu */
+ background: #445;
+}
+
+#nav { /* 'nav' is only the main menu */
+ float: left;
+ width: 200px;
+ background: #556;
+}
+#nav ul {
+}
+#nav li {
+}
+#nav ul li.category {
+ font-weight: bold;
+ background: #667;
+}
+#nav ul li.menuitem {
+ list-style-type: none;
+}
+#nav ul li.current {
+ list-style-type: none;
+ background: #99A;
+}
+#nav ul li.last {
+ list-style-type: none;
+}
+#wrapper { /* 'wrapper' is the area where you display the interesting things */
+ float: left;
+ width: 800px;
+ background: #676;
+ font-size: 14px;
+}
+/* FOOTER */
+#footer {
+ clear: both;
+ background: #898;
+}
+