theme updates

This commit is contained in:
Andrew Davidson 2016-09-14 19:58:49 -04:00
parent 4c6f9bde6b
commit ea255fdb41
4 changed files with 60 additions and 24 deletions

View file

@ -1,11 +1,9 @@
<footer class="site-footer"> <footer class="site-footer">
<div class="wrapper"> <div class="wrapper">
<a href="/">
<img src="/static/logo.png" style="width:150px;" />
</a>
<div class="footer-col-wrapper"> <div class="footer-col-wrapper">
<div class="footer-col footer-col-1"> <div class="footer-col footer-col-1">
Contact me:
<ul class="contact-list"> <ul class="contact-list">
<li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li> <li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li>
{% if site.twitter_username %} {% if site.twitter_username %}

View file

@ -1,17 +1,17 @@
<header class="site-header"> <div class="site-header-blur"></div>
<div id="site-header">
<div class="wrapper"> <header class="site-header">
<div style="margin:0em auto;width:35%;text-align:center;">
<a href="/"><img src="/static/logo.png" /></a>
</div>
</div>
<table> <div class="site-logo">
<tr> <a href="/"><img src="/static/logo.png" /></a>
<td style="width:33%;"><a href="/">Home</a></td> </div>
<td style="width:33%;"><a href="/about">About</a></td> <ul class="site-nav">
<td style="width:34%;">Photos</td> <li><a href="/">Home</a></li>
</tr> <li><a href="/about">About</a></h3></td>
</table> <li>Photos</li>
</ul>
</header> </header>
</div>

View file

@ -87,7 +87,11 @@ h1, h2, h3, h4, h5, h6 {
h1.post-title { h1.post-title {
color: $text-color; color: $text-color;
} }
.site-nav {
font-weight: $base-font-weight;
}
/** /**
* Links * Links

View file

@ -1,11 +1,30 @@
/** /**
* Site header * Site header
*/ */
.site-header {
min-height: 56px;
// Positioning context for the mobile navigation icon #site-header {
position: relative; border-top: 1px solid #000;
border-bottom: 1px solid #000;
background-color: #FFF;
position: fixed;
top: 10px;
width: 100%;
}
.site-header-blur {
position:fixed;
top: -20px;
height: 50px;
width: 100%;
-webkit-backdrop-filter: blur(5px);
backdrop-filter: blur(5px);
}
.site-logo {
float: left;
width: 100px;
text-align:center;
margin-left: 10%;
} }
.site-title { .site-title {
@ -23,6 +42,21 @@
} }
.site-nav { .site-nav {
float: right;
text-align: center;
list-style-type: none;
margin: 0 10% 0 0;
font-size: 1.3em;
}
.site-nav li {
width: 70px;
display: inline;
line-height: 55px;
float: left;
}
/*.site-nav {
float: right; float: right;
line-height: 56px; line-height: 56px;
@ -88,8 +122,7 @@
margin-left: 20px; margin-left: 20px;
} }
} }
} } */
/** /**
@ -167,6 +200,7 @@
*/ */
.page-content { .page-content {
padding: $spacing-unit 0; padding: $spacing-unit 0;
margin-top: 100px;
} }
.page-heading { .page-heading {