Commit 9d2223fd by Kyle Fiedler

Add images for book and fix styles for wiki

parent 324f3614
...@@ -76,27 +76,14 @@ div.info-wrapper { ...@@ -76,27 +76,14 @@ div.info-wrapper {
h1 { h1 {
@extend .bottom-border; @extend .bottom-border;
padding: lh(.5) lh(.5); padding: lh(.5) lh(.5);
}
header {
// h1 {
// font-weight: 100;
// font-style: italic;
// }
p {
color: #666;
font-size: 12px;
margin-bottom: 0; margin-bottom: 0;
margin-top: 4px;
}
} }
ol { ol {
background: none; background: none;
list-style: none; list-style: none;
padding-left: 0; padding-left: 0;
margin: 0;
li { li {
@extend .clearfix; @extend .clearfix;
......
...@@ -74,7 +74,7 @@ h1.top-header { ...@@ -74,7 +74,7 @@ h1.top-header {
} }
.bottom-border { .bottom-border {
border-bottom: 1px solid #d3d3d3; border-bottom: 1px solid $border-color;
} }
@media print { @media print {
......
...@@ -4,78 +4,70 @@ div#wiki_panel { ...@@ -4,78 +4,70 @@ div#wiki_panel {
h2 { h2 {
@extend .bottom-border; @extend .bottom-border;
font-size: 18px;
margin: 0 ; margin: 0 ;
padding: lh(.5) lh(); padding: lh(.5) lh() lh(.5) 0;
} color: #000;
input[type="button"] {
background: transparent;
border: none;
@include box-shadow(none);
color: #666;
font-size: 14px;
font-weight: bold;
margin: 0px;
padding: 7px lh();
text-align: left;
@include transition();
width: 100%;
} }
ul { ul {
li { padding-left: 0;
@include box-shadow(inset 0 1px 0 0 #eee); margin: 0;
border-top: 1px solid #d3d3d3;
&:hover {
background: #efefef;
@include background-image(linear-gradient(-90deg, rgb(245,245,245), rgb(225,225,225)));
}
&:first-child { li {
border: none; @extend .bottom-border;
}
&.search { &.search {
padding: 10px lh(); padding: 10px lh() 10px 0;
label { label {
display: none; display: none;
} }
} }
&.create-article {
h3 {
}
}
a { a {
color: #666; color: #666;
font-size: 14px; font-size: 14px;
padding: 7px lh(); padding: 7px lh() 7px 0;
&:hover {
background: #efefef;
}
}
}
form {
input[type="submit"]{
@extend .light-button;
text-transform: none;
text-shadow: none;
} }
} }
} }
div#wiki_create_form { div#wiki_create_form {
@extend .clearfix; @extend .clearfix;
background: #dadada; padding: lh(.5) lh() lh(.5) 0;
border-bottom: 1px solid #d3d3d3;
padding: 15px; label {
font-family: $sans-serif;
margin-bottom: lh(.5);
}
input[type="text"] { input[type="text"] {
@include box-sizing(border-box); @include box-sizing(border-box);
display: block; display: block;
margin-bottom: 6px;
width: 100%; width: 100%;
margin-bottom: lh(.5);
} }
ul { ul {
list-style: none; list-style: none;
margin: 0;
li { li {
float: left; float: left;
border-bottom: 0;
&#cancel { &#cancel {
float: right; float: right;
......
...@@ -25,9 +25,9 @@ ...@@ -25,9 +25,9 @@
<%include file="navigation.html" /> <%include file="navigation.html" />
<section class="content-wrapper"> <section class="content-wrapper">
${self.body()} ${self.body()}
<%block name="bodyextra"/>
</section> </section>
<%block name="bodyextra"/>
<%include file="footer.html" /> <%include file="footer.html" />
<%static:js group='application'/> <%static:js group='application'/>
......
...@@ -106,7 +106,7 @@ ...@@ -106,7 +106,7 @@
<form method="GET" onsubmit="this.action='${baseURL}' + this.wiki_article_name.value.replace(/([^a-zA-Z0-9\-])/g, '');"> <form method="GET" onsubmit="this.action='${baseURL}' + this.wiki_article_name.value.replace(/([^a-zA-Z0-9\-])/g, '');">
<div> <div>
<label for="id_wiki_article_name">Title of article</label> <label for="id_wiki_article_name">Title of article</label>
<input type="text" name="wiki_article_name" id="id_wiki_article_name" /><br/> <input type="text" name="wiki_article_name" id="id_wiki_article_name" />
</div> </div>
<ul> <ul>
<li> <li>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment