Skip to content
Snippets Groups Projects
Commit a2b13719 authored by Jared Hancock's avatar Jared Hancock
Browse files

login: Fix rendering in Safari

parent df150ef0
No related branches found
No related tags found
No related merge requests found
......@@ -2,6 +2,7 @@
include_once(INCLUDE_DIR.'staff/login.header.php');
$info = ($_POST && $errors)?Format::htmlchars($_POST):array();
?>
<div id="brickwall"></div>
<div id="background-compat"></div>
<div id="loginBox">
<div class="tape"></div>
......
......@@ -30,6 +30,9 @@ body {
line-height: 1.5em;
margin: 0;
text-align: center;
}
#brickwall {
background-image: url(../images/oscar-wall.jpg);
background-color:orange;
background-blend-mode: multiply;
......@@ -37,6 +40,11 @@ body {
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
#background-compat {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment