2015-10-26 13:35:24 -04:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2018-11-27 02:51:52 -05:00
|
|
|
textbox, input[type="text"], input[type="password"] {
|
|
|
|
width: 90%;
|
2015-10-26 13:35:24 -04:00
|
|
|
}
|
|
|
|
|
2018-11-27 02:51:52 -05:00
|
|
|
form {
|
|
|
|
text-align: center;
|
|
|
|
margin: 10px 0 0 0;
|
2015-10-26 13:35:24 -04:00
|
|
|
}
|
|
|
|
|
2021-01-05 06:25:28 -05:00
|
|
|
ul.radiobuttons {
|
|
|
|
text-align: left;
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
|
2020-06-10 09:50:39 -04:00
|
|
|
/*
|
|
|
|
* Add some padding to the viewport.
|
|
|
|
*/
|
|
|
|
#container {
|
|
|
|
padding: 10px;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Center all direct children of the main form.
|
|
|
|
*/
|
|
|
|
#container > * {
|
|
|
|
display: block;
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A wrapper around each login flow.
|
|
|
|
*/
|
2015-10-26 13:35:24 -04:00
|
|
|
.login_flow {
|
2018-11-27 02:51:52 -05:00
|
|
|
width: 300px;
|
2015-10-26 13:35:24 -04:00
|
|
|
text-align: left;
|
|
|
|
padding: 10px;
|
|
|
|
margin-bottom: 40px;
|
|
|
|
|
|
|
|
border-radius: 10px;
|
|
|
|
box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.15);
|
|
|
|
|
|
|
|
background-color: #f8f8f8;
|
|
|
|
border: 1px #ccc solid;
|
|
|
|
}
|
2020-06-10 09:50:39 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Used to show error content.
|
|
|
|
*/
|
|
|
|
#feedback {
|
|
|
|
/* Red text. */
|
|
|
|
color: #ff0000;
|
|
|
|
/* A little space to not overlap the box-shadow. */
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|