styled notifications

This commit is contained in:
Connor Turland 2014-02-10 01:47:48 -05:00
parent 4e8fc6fe06
commit ec9fe66bfe
3 changed files with 5 additions and 8 deletions

View file

@ -368,12 +368,10 @@ input[type="submit"] {
.notice.metamaps, .alert.metamaps { .notice.metamaps, .alert.metamaps {
position: absolute; position: absolute;
margin: 20px; margin: 5px 0 0 45px;
background: url(/assets/black_bg.png); background: #0F1519;
padding: 10px; padding: 10px;
border-radius: 5px; border-radius: 5px;
box-shadow: 6px 6px 8px rgba(0,0,0,0.4);
border:1px solid #000;
} }
.headertop { .headertop {
@ -2033,7 +2031,6 @@ font-family: 'vinyl';
font-size: 40px; font-size: 40px;
margin: 40px 20px 25px; margin: 40px 20px 25px;
text-align:center; text-align:center;
background: url('home_bg2.png') no-repeat center -46px;
} }
.home_content .request { .home_content .request {

View file

@ -30,6 +30,6 @@
<div class="clearfloat"></div> <div class="clearfloat"></div>
<h1 class="index"> <h1 class="index">
Welcome Welcome!
</h1> </h1>
</div> </div>

View file

@ -22,10 +22,10 @@ form.find('.mapCommonsIcon').addClass('selected');
var tempForm = form.html(); var tempForm = form.html();
if (mapid == null) { if (mapid == null) {
form.html("Success! Do you want to <br> <a href='/maps/" + '<%= @map.id %>' + "'>Go to your new map?</a><br>or<br><a href='javascript:closeIt(); return false;'>Stay on this page?</a>"); form.html("Success! Do you want to <br> <a href='/maps/" + '<%= @map.id %>' + "'>Go to your new map?</a><br>or<br><a href='#' onclick='closeIt(); return false;'>Stay on this page?</a>");
} }
else if (mapid != null) { else if (mapid != null) {
form.html("Success! Do you want to <br> <a href='/maps/" + '<%= @map.id %>' + "'>Go to your new map?</a><br>or<br><a href='javascript:closeIt(); return false;'>Stay on this map?</a>"); form.html("Success! Do you want to <br> <a href='/maps/" + '<%= @map.id %>' + "'>Go to your new map?</a><br>or<br><a href='#' onclick='closeIt(); return false;'>Stay on this map?</a>");
} }
$('#lightbox_main').css('margin-top', '-' + ($('#lightbox_main').height() / 2) + 'px' ); $('#lightbox_main').css('margin-top', '-' + ($('#lightbox_main').height() / 2) + 'px' );