Dan Brown

Added logo and favicon

1 +<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg width="100%" height="100%" viewBox="0 0 246 35" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xml:space="preserve" style="fill-rule:evenodd;clip-rule:evenodd;stroke-linejoin:round;stroke-miterlimit:1.41421;"><g id="Layer1"><text x="70.385px" y="30.01px" style="font-family:Roboto;font-size:36.52px;font-weight:500;fill:#444;">B<tspan x="93.058px 113.485px 133.912px 152.61px 174.285px 186.063px 205.456px 224.207px " y="30.01px 30.01px 30.01px 30.01px 30.01px 30.01px 30.01px 30.01px ">ookStack</tspan></text></g><g id="Stack of books"><rect x="34.126" y="24.108" width="32.613" height="5.902" style="fill:#1c77c1;"/><rect x="34.126" y="14.07" width="32.613" height="5.902" style="fill:#1c77c1;"/><rect x="34.126" y="4.032" width="32.613" height="5.902" style="fill:#1c77c1;"/></g><g id="Layer2"><path d="M5.972,30.01l22.828,-25.978l-0.266,0l0,25.978l-22.562,0Z" style="fill:#444;"/></g></svg>
...\ No newline at end of file ...\ No newline at end of file
No preview for this file type
...@@ -17,6 +17,10 @@ header { ...@@ -17,6 +17,10 @@ header {
17 z-index: -1; 17 z-index: -1;
18 top: 0; 18 top: 0;
19 } 19 }
20 +.logo {
21 + width: 180px;
22 + opacity: 0.8;
23 +}
20 24
21 body { 25 body {
22 margin-top: 64px; 26 margin-top: 64px;
......
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 - <title>Oxbow</title> 4 + <title>BookStack</title>
5 <meta name="viewport" content="width=device-width"> 5 <meta name="viewport" content="width=device-width">
6 <link rel="stylesheet" href="/css/app.css"> 6 <link rel="stylesheet" href="/css/app.css">
7 <link href='http://fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700,700italic,300italic,100,300' rel='stylesheet' type='text/css'> 7 <link href='http://fonts.googleapis.com/css?family=Roboto:400,400italic,500,500italic,700,700italic,300italic,100,300' rel='stylesheet' type='text/css'>
...@@ -30,7 +30,7 @@ ...@@ -30,7 +30,7 @@
30 <div class="container"> 30 <div class="container">
31 <div class="padded-vertical row clearfix"> 31 <div class="padded-vertical row clearfix">
32 <div class="col-md-3"> 32 <div class="col-md-3">
33 - <div class="logo float left">Oxbow</div> 33 + <div ><img class="logo float left" src="/bookstack.svg" alt="BookStack"></div>
34 </div> 34 </div>
35 <div class="col-md-9"> 35 <div class="col-md-9">
36 <ul class="menu float"> 36 <ul class="menu float">
......
...@@ -10,12 +10,6 @@ ...@@ -10,12 +10,6 @@
10 <form action="{{$book->getUrl() . '/page'}}" method="POST"> 10 <form action="{{$book->getUrl() . '/page'}}" method="POST">
11 @include('pages/form') 11 @include('pages/form')
12 </form> 12 </form>
13 -
14 - <script>
15 - $(function() {
16 - $('#html').editable({inlineMode: false});
17 - });
18 - </script>
19 @stop 13 @stop
20 14
21 @section('bottom') 15 @section('bottom')
......