element-call/src/Home.module.css

111 lines
1.5 KiB
CSS
Raw Normal View History

2021-12-07 17:59:55 -08:00
.home {
display: flex;
flex: 1;
height: 100%;
}
.left,
.right {
display: flex;
flex-direction: column;
flex: 1;
}
.left {
background-color: var(--bgColor2);
}
2021-12-09 12:58:30 -08:00
.fullWidth {
background-color: var(--bgColor1);
overflow-y: auto;
}
2021-12-07 17:59:55 -08:00
.centered {
display: flex;
flex-direction: column;
flex: 1;
width: 100%;
max-width: 512px;
min-width: 0;
}
.content {
flex: 1;
2021-08-19 17:49:45 -07:00
}
2021-12-07 17:59:55 -08:00
.left .content {
2021-08-19 17:49:45 -07:00
display: flex;
2021-12-07 17:59:55 -08:00
flex-direction: column;
padding-top: 113px;
2021-08-19 17:49:45 -07:00
align-items: center;
}
2021-12-07 17:59:55 -08:00
.left .content form > * {
margin-top: 0;
margin-bottom: 24px;
2021-08-19 17:49:45 -07:00
}
2021-12-07 17:59:55 -08:00
.left .content form > :last-child {
margin-bottom: 0;
2021-08-19 17:49:45 -07:00
}
2021-12-07 17:59:55 -08:00
.left .content hr {
width: 100%;
border: none;
border-top: 1px solid var(--bgColor4);
color: var(--textColor2);
overflow: visible;
2021-08-19 17:49:45 -07:00
text-align: center;
2021-12-07 17:59:55 -08:00
height: 5px;
font-weight: 600;
font-size: 15px;
line-height: 24px;
}
.left .content hr:after {
background-color: var(--bgColor2);
content: "OR";
padding: 0 12px;
position: relative;
top: -12px;
2021-08-19 17:49:45 -07:00
}
2021-12-09 12:58:30 -08:00
.fullWidth .content hr:after {
background-color: var(--bgColor1);
}
2021-12-07 17:59:55 -08:00
.left .content form {
display: flex;
flex-direction: column;
align-items: center;
padding: 92px;
}
.fieldRow {
width: 100%;
}
.button {
height: 40px;
width: 100%;
font-size: 15px;
font-weight: 600;
}
.left .content form:first-child {
padding-top: 0;
2021-08-19 17:49:45 -07:00
}
2021-12-07 17:59:55 -08:00
.left .content form:last-child {
padding-bottom: 0;
}
.right .content {
padding: 113px 40px 40px 40px;
overflow-y: auto;
}
.right .content h3:first-child {
margin-top: 0;
}