130 lines
2.9 KiB
CSS
130 lines
2.9 KiB
CSS
|
|
/** FORM */
|
|
|
|
label {
|
|
display: block;
|
|
margin: 0;
|
|
font-size: .875rem;
|
|
font-weight: 400;
|
|
line-height: 1.8;
|
|
color: #0a0a0a;
|
|
}
|
|
|
|
input {
|
|
appearance: none;
|
|
background-color: rgb(254, 254, 254);
|
|
border-bottom-color: rgb(202, 202, 202);
|
|
border-bottom-left-radius: 0px;
|
|
border-bottom-right-radius: 0px;
|
|
border-bottom-style: solid;
|
|
border-bottom-width: 1px;
|
|
border-image-outset: 0;
|
|
border-image-repeat: stretch;
|
|
border-image-slice: 100%;
|
|
border-image-source: none;
|
|
border-image-width: 1;
|
|
border-left-color: rgb(202, 202, 202);
|
|
border-left-style: solid;
|
|
border-left-width: 1px;
|
|
border-right-color: rgb(202, 202, 202);
|
|
border-right-style: solid;
|
|
border-right-width: 1px;
|
|
border-top-color: rgb(202, 202, 202);
|
|
border-top-left-radius: 0px;
|
|
border-top-right-radius: 0px;
|
|
border-top-style: solid;
|
|
border-top-width: 1px;
|
|
box-shadow: rgba(10, 10, 10, 0.1) 0px 1px 2px 0px inset;
|
|
box-sizing: border-box;
|
|
color: rgb(10, 10, 10);
|
|
cursor: text;
|
|
display: block;
|
|
font-size: 16px;
|
|
font-stretch: 100%;
|
|
height: 2.3rem;
|
|
line-height: 1.5rem;
|
|
padding: 0.5rem;
|
|
width: 100%;
|
|
/* font-style normal
|
|
font-variant-caps normal
|
|
font-variant-east-asian normal
|
|
font-variant-ligatures normal
|
|
font-variant-numeric normal
|
|
font-weight 400
|
|
letter-spacing normal
|
|
margin-bottom 16px
|
|
margin-left 0px
|
|
margin-right 0px
|
|
margin-top 0px
|
|
overflow-x visible
|
|
overflow-y visible
|
|
padding-bottom 8px
|
|
padding-left 8px
|
|
padding-right 8px
|
|
padding-top 8px
|
|
text-align start
|
|
text-indent 0px
|
|
text-rendering auto
|
|
text-shadow none
|
|
text-size-adjust 100%
|
|
text-transform none
|
|
transition-delay 0s, 0s, 0s
|
|
transition-duration 0.5s, 0.25s, 0.5s
|
|
transition-property box-shadow, border-color, -webkit-box-shadow
|
|
transition-timing-function ease, ease-in-out, ease
|
|
width 468.5px */
|
|
|
|
}
|
|
|
|
.container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.loginForm {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
transform: translate(-50%,-50%);
|
|
}
|
|
|
|
.loginForm > form {
|
|
display: inline-flex;
|
|
}
|
|
|
|
button {
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
border-radius: 0;
|
|
border-style: solid;
|
|
border-width: 0;
|
|
cursor: pointer;
|
|
font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif !important;
|
|
font-weight: normal;
|
|
line-height: normal;
|
|
margin: 0 0 1.11111rem;
|
|
position: relative;
|
|
text-align: center;
|
|
text-decoration: none;
|
|
display: inline-block;
|
|
padding: 0.6rem 1.25rem;
|
|
font-size: 0.88889rem;
|
|
background-color: rgb(7, 142, 181);
|
|
border-color: #007095;
|
|
color: #FFFFFF;
|
|
transition: background-color 300ms ease-out;
|
|
box-shadow: 5px 5px 15px -11px #007095;
|
|
|
|
}
|
|
|
|
button:hover {
|
|
|
|
}
|
|
|
|
#adminSettings {
|
|
padding: 1.5rem;
|
|
border-radius: 2px;
|
|
-webkit-box-shadow: 0px 2px 28px 5px #000000;
|
|
box-shadow: 0px 27px 34px 2px rgb(0 0 0 / 49%);
|
|
} |