summaryrefslogtreecommitdiff
path: root/assets/css/header.css
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-11-02 15:06:41 -0500
committerFrédéric Guillot <fred@kanboard.net>2014-11-02 15:06:41 -0500
commit37332ae2222706f8fb330dae780dc938512edcf5 (patch)
tree9161d539cc289179339162d6922c4d9dd2c30e63 /assets/css/header.css
parent8fe5df39d97ef851d11931fcf7e906ec08838ef7 (diff)
Change layout (experimental)
Diffstat (limited to 'assets/css/header.css')
-rw-r--r--assets/css/header.css85
1 files changed, 85 insertions, 0 deletions
diff --git a/assets/css/header.css b/assets/css/header.css
new file mode 100644
index 00000000..4fc268cc
--- /dev/null
+++ b/assets/css/header.css
@@ -0,0 +1,85 @@
+/* header */
+header {
+ margin-top: 10px;
+ padding-bottom: 15px;
+ clear: both;
+ border-bottom: 1px solid #dedede;
+}
+
+header h1 {
+ margin: 0;
+ padding: 0;
+ float: left;
+}
+
+header ul {
+ text-align: right;
+ font-size: 0.9em;
+}
+
+header li {
+ display: inline;
+ padding-left: 30px;
+}
+
+header a {
+ color: #777;
+ text-decoration: none;
+}
+
+nav .active a {
+ color: #333;
+ font-weight: bold;
+}
+
+/* username */
+.username a {
+ color: #000;
+}
+
+.username a:hover {
+ color: #DF5353;
+ text-decoration: underline;
+}
+
+/* home icon */
+.home-link {
+ color: #eee;
+}
+
+.home-link:focus,
+.home-link:hover {
+ color: #ccc;
+}
+
+/* page header */
+.page-header {
+ margin-bottom: 25px;
+}
+
+.page-header h2 {
+ margin: 0;
+ padding: 0;
+ font-size: 140%;
+ border-bottom: 1px dotted #DF5353;
+}
+
+.page-header h2 a {
+ color: #ddd;
+}
+
+.page-header h2 a:focus,
+.page-header h2 a:hover {
+ color: #333;
+}
+
+.page-header ul {
+ text-align: left;
+ margin-top: 5px;
+}
+
+.page-header li {
+ display: inline;
+ padding-right: 10px;
+ font-size: 0.9em;
+}