Skip to content

Commit

Permalink
Adds fancy hr
Browse files Browse the repository at this point in the history
  • Loading branch information
arecker committed Nov 10, 2015
1 parent 628bc43 commit 1f62043
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 17 deletions.
20 changes: 3 additions & 17 deletions showing/templates/showing/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,28 +5,14 @@
<div class="box">
<div class="col-lg-12 text-center">
<img class="img-responsive img-center" "alt="" src="{% static 'img/logo.jpg' %}""/>
<hr class="fancy"/>
</div>
{% if carousel %}
{% include "showing/carousel.html" %}
{% endif %}
</div>
</div>
<div class="row">
<div class="box">
<div class="col-lg-12 text-center">
<h2 class="intro-text text-center">Welcome!</h2>
<hr>
<p>
Thank you so much for visiting my site.
</p>
<p>
If you'd like to hire me for your project, feel free to <a href="{% url 'contact' %}">contact me</a>
</p>
<div class="text-center">
<img alt="" src="{% static 'img/marissa.jpg' %}" width="300"/>
</div>
</div>
</div>
<hr class="fancy"/>
<br/><br/><br/>
</div>
{% endblock %}
{% block scripts %}
Expand Down
6 changes: 6 additions & 0 deletions static/css/site.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,10 @@

.navbar .nav {
min-height:28px !important;
}

hr.fancy {
border: 0;
height: 1px;
background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

0 comments on commit 1f62043

Please sign in to comment.