Adapt login page for mobile
This commit is contained in:
parent
1336f4b5e0
commit
7f8846f7d7
1 changed files with 15 additions and 1 deletions
|
|
@ -142,6 +142,7 @@ echo '<!doctype html><HTML>
|
|||
<head>
|
||||
<TITLE> NOALYSS </TITLE>
|
||||
<link rel="shortcut icon" type="image/ico" href="favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<style>
|
||||
BODY {
|
||||
background-color:white;
|
||||
|
|
@ -201,6 +202,19 @@ border-width: 0px;
|
|||
background-image: url("image/bg-submit3.gif");
|
||||
background-repeat: repeat-x repeat-y;
|
||||
}
|
||||
@media only screen and (max-width : 900px) {
|
||||
#alternate_browser {
|
||||
display : none;
|
||||
}
|
||||
}
|
||||
@media only screen and (min-width : 901px) {
|
||||
#alternate_browser {
|
||||
position:absolute;
|
||||
bottom: 0px;
|
||||
left:0px;
|
||||
z-index: -1
|
||||
}
|
||||
}
|
||||
</style>
|
||||
<script src="js/scripts.js" type="text/javascript"></script>
|
||||
</head>
|
||||
|
|
@ -323,7 +337,7 @@ echo '
|
|||
</script>
|
||||
<?php endif; ?>
|
||||
|
||||
<div style="position:absolute;bottom: 0px;left:0px;z-index: -1">
|
||||
<div id="alternate_browser">
|
||||
<p>Nous conseillons d'utiliser Firefox ou chrome.</p>
|
||||
<p>We recommend to use Firefox or Chrome.</p>
|
||||
<ul style="list-style:none;display:block">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue