add a footer line with a link to Github
This commit is contained in:
parent
37c556fcbb
commit
2786ab4770
3 changed files with 24 additions and 13 deletions
|
@ -361,7 +361,7 @@ th {
|
|||
body {
|
||||
font: 12pt Helvetica, Arial, sans-serif;
|
||||
line-height: 1.4em;
|
||||
background: #ECEBF0;
|
||||
background: #ecebf0;
|
||||
/*background: #f4f4f4;*/
|
||||
padding-top: 1em; }
|
||||
|
||||
|
@ -377,13 +377,17 @@ p:first-child {
|
|||
p:last-child {
|
||||
margin-bottom: 0; }
|
||||
|
||||
header, main {
|
||||
header, main, .footer {
|
||||
max-width: 800px;
|
||||
margin: 0 auto; }
|
||||
|
||||
header {
|
||||
margin-bottom: 1em; }
|
||||
|
||||
.footer {
|
||||
font-size: 0.8em;
|
||||
text-align: center; }
|
||||
|
||||
ul#navigation {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
|
@ -399,8 +403,8 @@ ul#navigation {
|
|||
.button-link a {
|
||||
padding: 0.5em;
|
||||
background-color: #353129;
|
||||
color: #ECEBF0;
|
||||
border: 1px solid #ECEBF0;
|
||||
color: #ecebf0;
|
||||
border: 1px solid #ecebf0;
|
||||
border-radius: 4px;
|
||||
display: inline-block; }
|
||||
|
||||
|
@ -412,7 +416,7 @@ ul#navigation {
|
|||
|
||||
article {
|
||||
margin-bottom: 1em;
|
||||
box-shadow: 0 0 2px #687D77;
|
||||
box-shadow: 0 0 2px #687d77;
|
||||
background-color: white;
|
||||
border-radius: 3px;
|
||||
padding: 0.5em; }
|
||||
|
@ -434,8 +438,8 @@ article {
|
|||
article img, article video {
|
||||
max-width: 100%; }
|
||||
article header {
|
||||
color: #484A47;
|
||||
border-bottom: 1px solid #687D77;
|
||||
color: #484a47;
|
||||
border-bottom: 1px solid #687d77;
|
||||
margin-bottom: 0.5em;
|
||||
overflow: auto; }
|
||||
article header img {
|
||||
|
@ -531,11 +535,11 @@ button {
|
|||
.reply-area .reply-link {
|
||||
display: inline-block;
|
||||
padding: 0.2em;
|
||||
border: 1px solid #687D77;
|
||||
border: 1px solid #687d77;
|
||||
border-radius: 4px;
|
||||
background-color: #ECEBF0;
|
||||
background-color: #ecebf0;
|
||||
text-decoration: none;
|
||||
color: #484A47;
|
||||
color: #484a47;
|
||||
min-width: 50px;
|
||||
text-align: center; }
|
||||
|
||||
|
@ -548,5 +552,3 @@ button {
|
|||
max-height: 1.2em;
|
||||
min-width: inherit;
|
||||
min-height: inherit; } }
|
||||
|
||||
/*# sourceMappingURL=style.css.map */
|
||||
|
|
|
@ -43,7 +43,7 @@ p {
|
|||
}
|
||||
}
|
||||
|
||||
header, main {
|
||||
header, main, .footer {
|
||||
max-width: 800px;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
@ -52,6 +52,11 @@ header {
|
|||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.footer {
|
||||
font-size: 0.8em;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
ul#navigation {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
|
|
|
@ -73,6 +73,10 @@
|
|||
</main>
|
||||
{% block foot %}{% endblock %}
|
||||
|
||||
<div class="footer">
|
||||
Woodwind is <a href="https://github.com/kylewm/woodwind">on GitHub</a>. Have any problems? File an issue or come chat in <code>#indiewebcamp</code> on Freenode IRC.
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$("input[type='url']").blur(function() {
|
||||
if (this.value.trim() != '') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue