summaryrefslogtreecommitdiffstats
path: root/themes
diff options
context:
space:
mode:
Diffstat (limited to 'themes')
-rw-r--r--themes/blue/style.css188
-rw-r--r--themes/blue/theme.php40
2 files changed, 228 insertions, 0 deletions
diff --git a/themes/blue/style.css b/themes/blue/style.css
new file mode 100644
index 0000000..473e832
--- /dev/null
+++ b/themes/blue/style.css
@@ -0,0 +1,188 @@
+html {
+ min-height: 100%;
+ position: relative;
+}
+
+body {
+ color: #fff;
+ margin: 0 0 100px;
+ background: #f3f3f3;
+ font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
+}
+
+a {
+ color: #fff;
+ text-decoration: none;
+ border-bottom: 1px #fff dotted;
+}
+
+.clear {clear: both;}
+*:focus {outline: none;}
+.toggle {cursor: pointer;}
+
+h3 {
+ margin: 0;
+ padding: 0;
+}
+
+#main-title {
+ float: left;
+ display: inline;
+ font-size: 32px;
+ margin: 0 0 0 11%;
+ font-weight: normal;
+ padding: 13px 0 0 0;
+}
+
+#main-title a {
+ border: 0;
+ text-decoration: none;
+}
+
+#subtitle {
+ font-size: 16px;
+ padding: 0 0 10px 0;
+ text-transform: uppercase;
+}
+
+#nav {
+ width: 100%;
+ float: left;
+ position: relative;
+ background: #1F2B33;
+}
+
+#nav ul {
+ float: right;
+ margin: 0 8% 0 0;
+}
+
+#nav li {
+ float: left;
+ font-size: 14px;
+ list-style: none;
+}
+
+#nav li a {
+ border: 0;
+ color: #fff;
+ display: block;
+ text-transform: uppercase;
+ padding: 25px 20px 25px 25px;
+
+}
+
+#nav li a:hover {
+ background: #16a6b6;
+}
+
+#wrapper {
+ width: 52%;
+ float: left;
+ color: #444;
+ height: auto;
+ padding: 20px;
+ font-size: 15px;
+ background: #fff;
+ margin-top: 40px;
+ margin-left: 10%;
+ line-height: 19px;
+ border: 1px solid #fff;
+}
+
+#wrapper a {
+ color: #444;
+ border-bottom: 1px #444 dotted;
+}
+
+#side {
+ width: 20%;
+ float: left;
+ height: auto;
+ padding: 20px;
+ font-size: 14px;
+ margin-left: 2%;
+ margin-top: 40px;
+ background: #16a6b6;
+}
+
+span.editText {
+ display: block;
+ cursor: pointer;
+}
+
+span.editText textarea {
+ border: 0;
+ padding: 0;
+ width: 100%;
+ resize: none;
+ color: inherit;
+ display: block;
+ overflow: hidden;
+ font-size: inherit;
+ line-height: inherit;
+ font-family: inherit;
+ background-color: transparent;
+}
+
+.border {
+ border-radius: 5px;
+ margin-bottom: 10px;
+ -moz-border-radius: 5px;
+ -webkit-border-radius: 5px;
+}
+
+.hide {
+ margin: 0;
+ width: 100%;
+ display: none;
+}
+
+.change {
+ width: 100%;
+ height: auto;
+ padding: 20px;
+ margin-top: 5px;
+ background: #1F2B33;
+}
+
+.change select {
+ width: 20%;
+ color: #fff;
+ border: none;
+ padding: 10px;
+ font-weight: bold;
+ background: #16a6b6;
+}
+
+.settings {
+ width: 100%;
+ clear: both;
+ color: #fff;
+ height: auto;
+ padding: 5px 0;
+ text-align: center;
+ background: #16a6b6;
+}
+
+div.settings div.change {
+ width: 52%;
+ text-align: left;
+ margin-left: 10%;
+}
+
+footer {
+ left: 0;
+ bottom: 0;
+ width: 100%;
+ min-height: 60px;
+ position: absolute;
+ background: #1F2B33;
+}
+
+footer p {
+ padding: 20px;
+ font-size: 13px;
+ margin: 0 6% 0 0;
+ text-align: right;
+} \ No newline at end of file
diff --git a/themes/blue/theme.php b/themes/blue/theme.php
new file mode 100644
index 0000000..0ce4cfd
--- /dev/null
+++ b/themes/blue/theme.php
@@ -0,0 +1,40 @@
+<!doctype html>
+<html lang="en">
+<head>
+<?php
+ echo " <meta charset='utf-8'>
+ <title>" . $c['title'] . " - " . $c['page'] . "</title>
+ <base href='$hostname'>
+ <link rel='stylesheet' href='themes/" . $c['theme_name'] . "/style.css'>
+ <script src='js/jquery-2.1.1.min.js'></script>
+ <meta name='description' content='" . $c['description'] . "'>
+ <meta name='keywords' content='" . $c['keywords'] . "'>";
+ edit_tags();
+?>
+</head>
+<body>
+<header>
+ <nav id="nav">
+ <h1 id="main-title"><a href='./'><?php echo $c['title']; ?></a></h1>
+ <ul>
+ <?php menu("<li><a", "</a></li>"); ?>
+ </ul>
+ </nav>
+</header>
+<?php if (is_loggedin()) settings(); ?>
+
+<div class="clear"></div>
+<div id="wrapper" class="border">
+ <?php content($c['page'], $c['content']); ?>
+
+</div>
+
+<div id="side" class="border">
+ <?php content('subside', $c['subside']); ?>
+
+</div>
+
+<div class="clear"></div>
+<footer><p><?php echo $c['copyright'] . " | $sig | $lstatus"; ?></p></footer>
+</body>
+</html> \ No newline at end of file