mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
Fallback registration page: added the classic viewport meta to fix the display on iPhone Safari and webview. The width of input elements also needs to be fixed.
This commit is contained in:
parent
443ba4eecc
commit
1b4e3b7fa6
@ -1,6 +1,7 @@
|
|||||||
<html>
|
<html>
|
||||||
<head>
|
<head>
|
||||||
<title> Registration </title>
|
<title> Registration </title>
|
||||||
|
<meta name='viewport' content='width=device-width, initial-scale=1, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0'>
|
||||||
<link rel="stylesheet" href="style.css">
|
<link rel="stylesheet" href="style.css">
|
||||||
<script src="js/jquery-2.1.3.min.js"></script>
|
<script src="js/jquery-2.1.3.min.js"></script>
|
||||||
<script src="js/recaptcha_ajax.js"></script>
|
<script src="js/recaptcha_ajax.js"></script>
|
||||||
|
@ -18,6 +18,10 @@ a:visited { color: #666; }
|
|||||||
a:hover { color: #000; }
|
a:hover { color: #000; }
|
||||||
a:active { color: #000; }
|
a:active { color: #000; }
|
||||||
|
|
||||||
|
input {
|
||||||
|
width: 100%
|
||||||
|
}
|
||||||
|
|
||||||
textarea, input {
|
textarea, input {
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
@ -47,6 +51,6 @@ textarea, input {
|
|||||||
-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
|
-moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
|
||||||
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
|
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
|
||||||
|
|
||||||
background-color: #f8f8f8;
|
background-color: #fff800;
|
||||||
border: 1px #ccc solid;
|
border: 1px #ccc solid;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user