Skip to content

Commit

Permalink
Starting to override styles to make it match existing site
Browse files Browse the repository at this point in the history
  • Loading branch information
bsclifton committed Feb 27, 2023
1 parent f0c5064 commit 8bbf634
Show file tree
Hide file tree
Showing 3 changed files with 49 additions and 0 deletions.
3 changes: 3 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ description: >- # this means to ignore newlines until "baseurl:"
Google search results) and in your feed.xml site description.
baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com

# generate social links in footer
twitter_username: _brianclifton
github_username: bsclifton
linkedin_username: bsclifton

# Build settings
markdown: kramdown
Expand Down
7 changes: 7 additions & 0 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<footer class="site-footer h-card">
<data class="u-url" href="{{ "/" | relative_url }}"></data>

<div class="wrapper">
{%- include social.html -%}
</div>
</footer>
39 changes: 39 additions & 0 deletions assets/main.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
---
# Only the main Sass file needs front matter (the dashes are enough)
---

@import "minima";

.site-title {
text-transform: uppercase;
}

.site-header {
border-bottom-width: 5px;
}

.site-footer {
background-color: #4f4f4f;
color: #ccc;
border-top: 5px solid #e7e7e7;

.wrapper {
text-align: center;
}

.social-media-list {
margin-bottom: 0;

li {
display: inline-block;
padding-right: 40px;
}
li + li {
padding-top: 0;
}
}

.svg-icon {
fill: #337ab7;
}
}

0 comments on commit 8bbf634

Please sign in to comment.