61 lines
1.1 KiB
CSS
61 lines
1.1 KiB
CSS
/* Style all input fields */
|
|
input {
|
|
width: 100%;
|
|
padding: 8px;
|
|
border: 1px solid #ccc;
|
|
border-radius: 4px;
|
|
box-sizing: border-box;
|
|
margin-top: 6px;
|
|
margin-bottom: 16px;
|
|
}
|
|
|
|
html * {
|
|
font-family:-apple-system, BlinkMacSystemFont, "SF Hello", "Helvetica Neue", Helvetica, Arial, Verdana, sans-serif;
|
|
}
|
|
|
|
body, html {
|
|
min-height: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.signup-backdrop {
|
|
background-color: #fff;
|
|
height: 100%;
|
|
width: 100%;
|
|
top: 0;
|
|
left: 0;
|
|
display: table;
|
|
position: absolute;
|
|
}
|
|
|
|
.signup-window-vertical {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
.signup-window {
|
|
background-color: #f1f1f1;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
width: 300px;
|
|
border-radius: 10px;
|
|
border-style: solid;
|
|
border-width: thin;
|
|
border-color: darkgray;
|
|
padding: 10px;
|
|
}
|
|
|
|
.login-buttons {
|
|
width: 100%;
|
|
padding: 10px;
|
|
background-color: #ccc;
|
|
color: #000;
|
|
border-style: hidden;
|
|
border-radius: 5px;
|
|
margin-top: 5px;
|
|
font-size: medium;
|
|
}
|
|
|
|
.login-buttons:hover {
|
|
background-color: #ddd;
|
|
} |