element-call/src/FullScreenView.module.css

52 lines
774 B
CSS
Raw Normal View History

2021-12-10 16:42:18 -08:00
.page {
position: relative;
display: flex;
flex-direction: column;
overflow: hidden;
min-height: 100%;
}
2021-12-10 16:22:42 -08:00
.header {
padding: 76px 65px;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex: 1;
}
.content {
2021-10-06 14:19:34 -07:00
display: flex;
flex-direction: column;
2021-12-10 16:22:42 -08:00
justify-content: center;
2021-10-06 14:19:34 -07:00
align-items: center;
2021-12-10 16:22:42 -08:00
max-width: 660px;
padding: 0 65px;
2021-10-06 14:19:34 -07:00
}
2021-12-10 16:22:42 -08:00
.content > * {
margin-top: 0;
margin-bottom: 32px;
}
.content > :last-child {
2021-10-06 14:19:34 -07:00
margin-bottom: 0;
}
2021-12-10 16:22:42 -08:00
.homeLink {
display: flex;
justify-content: center;
align-items: center;
padding: 8px 136px;
color: #0dbd8b;
text-decoration: none;
background: #0dbd8b;
border-radius: 8px;
color: #ffffff;
2021-12-13 16:25:40 -08:00
font-weight: normal;
2021-12-10 16:22:42 -08:00
font-size: 15px;
}