summaryrefslogtreecommitdiffstats
path: root/assets/stylesheets/book/header.less
diff options
context:
space:
mode:
Diffstat (limited to 'assets/stylesheets/book/header.less')
-rw-r--r--assets/stylesheets/book/header.less48
1 files changed, 48 insertions, 0 deletions
diff --git a/assets/stylesheets/book/header.less b/assets/stylesheets/book/header.less
new file mode 100644
index 0000000..d859b34
--- /dev/null
+++ b/assets/stylesheets/book/header.less
@@ -0,0 +1,48 @@
+.book .book-header {
+ position: fixed;
+ top: 0px;
+ right: 0px;
+ left: 0px;
+ z-index: 2;
+
+ height: 40px;
+
+ font-size: 0.85em;
+
+ background: #242628;
+ color: #e2edf2;
+
+ .btn {
+ display: block;
+ height: 40px;
+ padding: 0px 15px;
+ border-bottom: none;
+ color: #7d878a;
+ text-transform: uppercase;
+ line-height: 40px;
+
+ &:hover {
+ color: #e2edf2;
+ text-decoration: none;
+ position: relative;
+ background: #303436;
+ box-shadow: 0 -2px 2px rgba(0,0,0,0.2) inset;
+ }
+ }
+
+ h1 {
+ margin: 0px;
+ font-size: 20px;
+ text-align: center;
+ line-height: 40px;
+
+ a, a:hover {
+ color: inherit;
+ text-decoration: none;
+ }
+
+ @media (max-width: 600px) {
+ display: none;
+ }
+ }
+} \ No newline at end of file