mirror of
https://mau.dev/maunium/synapse.git
synced 2024-10-01 01:36:05 -04:00
944d524f18
* Clean up the CSS for the fallback login form I was finding this hard to work with, so simplify a bunch of things. Each flow is now a form inside a div of class login_flow. The login_flow class now has a fixed width, as that looks much better than each flow having a differnt width. * Support m.login.sso MSC1721 renames m.login.cas to m.login.sso. This implements the change (retaining support for m.login.cas for older clients). * changelog
51 lines
876 B
CSS
51 lines
876 B
CSS
html {
|
|
height: 100%;
|
|
}
|
|
|
|
body {
|
|
height: 100%;
|
|
font-family: "Myriad Pro", "Myriad", Helvetica, Arial, sans-serif;
|
|
font-size: 12pt;
|
|
margin: 0px;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 20pt;
|
|
}
|
|
|
|
a:link { color: #666; }
|
|
a:visited { color: #666; }
|
|
a:hover { color: #000; }
|
|
a:active { color: #000; }
|
|
|
|
input {
|
|
margin: 5px;
|
|
}
|
|
|
|
textbox, input[type="text"], input[type="password"] {
|
|
width: 90%;
|
|
}
|
|
|
|
form {
|
|
text-align: center;
|
|
margin: 10px 0 0 0;
|
|
}
|
|
|
|
.login_flow {
|
|
width: 300px;
|
|
text-align: left;
|
|
padding: 10px;
|
|
margin-bottom: 40px;
|
|
|
|
-webkit-border-radius: 10px;
|
|
-moz-border-radius: 10px;
|
|
border-radius: 10px;
|
|
|
|
-webkit-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);
|
|
|
|
background-color: #f8f8f8;
|
|
border: 1px #ccc solid;
|
|
}
|