bitque/jirs-client/js/css/login.css

70 lines
1.5 KiB
CSS
Raw Normal View History

#login > .styledForm {
2020-10-23 11:36:34 +02:00
margin-top: 5rem;
display: flex;
flex-direction: column;
background: rgb(255, 255, 255) none repeat scroll 0 0;
border-radius: 3px;
box-shadow: rgba(0, 0, 0, 0.1) 0 0 10px;
box-sizing: border-box;
color: var(--textMedium);
}
#login > .styledForm:first-of-type {
margin-bottom: 0;
}
#login > .styledForm:last-of-type {
box-shadow: rgba(0, 0, 0, 0.1) 0 10px 10px;
}
#login > .styledForm:first-of-type > .formElement {
padding-bottom: 0;
}
#login > .styledForm:last-of-type > .formElement {
padding-top: 0;
}
#login > .styledForm > .formElement > .formHeading {
color: var(--textMedium);
font-size: 1em;
line-height: 1.1428571428571428;
letter-spacing: -.003em;
font-family: var(--font-bold);
text-align: center;
}
#login > .styledForm > .formElement > .noPasswordSection {
line-height: 32px;
margin-top: 15px;
display: flex;
cursor: pointer;
}
#login > .styledForm > .formElement > .noPasswordSection > .styledIcon {
2020-04-15 20:28:07 +02:00
margin-right: 5px;
line-height: 32px;
}
#login > .styledForm > .formElement > .noPasswordSection > span {
display: block;
line-height: 32px;
}
2020-04-17 16:28:02 +02:00
2020-10-23 11:36:34 +02:00
#login > .styledForm .twoRow {
2020-04-17 16:28:02 +02:00
display: flex;
justify-content: space-between;
}
2020-10-23 11:36:34 +02:00
@media (min-width: 1240px) {
#login > .styledForm {
margin: 0 auto 24px;
width: 400px;
max-width: 400px;
}
#login > .styledForm:first-of-type {
margin-top: 124.5px;
}
}