Merge branch 'master' of github.com:neocities/neocities

This commit is contained in:
Kyle Drake 2015-04-29 18:18:07 -07:00
commit 6a8fa080eb
5 changed files with 15 additions and 15 deletions

View file

@ -59,7 +59,7 @@ a{
@import 'project-Main'; // Project Specific Main Content Area Styling
@import 'project-Footer'; // Project Specific Footer Styling
.alert{
.alert-error {
background-color:#F5BA00; color:#fff;
}

View file

@ -89,7 +89,11 @@
img {
@include vendor(transform, scaleX(-1));
width: 100px;
margin-right: 20px;
margin-right: 25px;
&.float-Right {
margin-left: 10px;
}
}
.intro-text {
font-size: 1.1em;

View file

@ -1,4 +1,4 @@
<% if request.path == '/' && !signed_in? %>
<% if (request.path == '/' && !signed_in?) || request.path == '/education' %>
<li>
<a href="/">Neocities</a>
</li>

View file

@ -75,12 +75,10 @@
</nav>
<% if flash.keys.length > 0 %>
<div class="alert txt-Center">
<p style="padding:5px">
<% flash.keys.each do |key| %>
<%== flash[key] %>
<% end %>
</p>
<div class="alert alert-block txt-Center">
<% flash.keys.each do |key| %>
<%== flash[key] %>
<% end %>
</div>
<% end %>

View file

@ -75,12 +75,10 @@
</nav>
<% if flash.keys.length > 0 %>
<div class="alert txt-Center">
<p style="padding:5px">
<% flash.keys.each do |key| %>
<%== flash[key] %>
<% end %>
</p>
<div class="alert alert-block txt-Center">
<% flash.keys.each do |key| %>
<%== flash[key] %>
<% end %>
</div>
<% end %>