Move inline CSS into _base.scss

This commit is contained in:
Oliver Davies 2015-10-26 20:07:58 +00:00
parent 2e004c7b1a
commit c561cfd346
2 changed files with 10 additions and 11 deletions

View file

@ -2,7 +2,14 @@ body {
padding-top: 60px;
}
main img {
height: auto;
max-width: 100%;
main {
a:link,
a:hover {
border-bottom: 1px solid;
text-decoration: none;
}
img {
@extend .img-responsive;
}
}

View file

@ -23,14 +23,6 @@
<link rel="stylesheet" href="{{ site.url }}/components/font-awesome/css/font-awesome.min.css">
{% block styles %}{% endblock %}
<style type="text/css">
main a:link,
main a:hover {
border-bottom: 1px solid;
text-decoration: none;
}
</style>
{% for size in site.apple_touch_icon_sizes %}
<link rel="apple-touch-icon" href="{{ site.gravatar.url }}?s={{ size }}" sizes="{{ size }}x{{ size }}">
{% endfor %}