2016-12-15 23:43:58 +00:00
|
|
|
.form-container {
|
|
|
|
text-align: center;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__header {
|
|
|
|
width: 100%;
|
|
|
|
padding: #{15 / $base-font-size}rem #{34 / $base-font-size}rem;
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__content {
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
justify-content: center;
|
2017-04-13 16:04:10 +00:00
|
|
|
align-items: center;
|
2016-12-15 23:43:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__title {
|
|
|
|
font-weight: normal;
|
|
|
|
color: $form-title-color;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__divider {
|
|
|
|
padding: #{20 / $base-font-size}rem 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__logo-button {
|
|
|
|
@extend %none-themify-icon;
|
|
|
|
}
|
|
|
|
|
|
|
|
.form-container__exit-button {
|
2016-12-19 21:49:37 +00:00
|
|
|
@extend %none-themify-icon-with-hover;
|
2016-12-15 23:43:58 +00:00
|
|
|
}
|
2018-10-13 20:14:46 +00:00
|
|
|
|
|
|
|
.form__table {
|
|
|
|
display: block;
|
|
|
|
max-width: 900px;
|
|
|
|
border-collapse: collapse;
|
|
|
|
& td {
|
|
|
|
max-width: 300px;
|
|
|
|
border: 1px solid #ddd;
|
|
|
|
padding: 0 10px 0 10px;
|
|
|
|
}
|
|
|
|
& tr:nth-child(even) {
|
|
|
|
background-color: #f2f2f2;
|
|
|
|
}
|
2018-11-05 21:28:52 +00:00
|
|
|
& tr.new-key {
|
|
|
|
background-color: #f2f2f2;
|
|
|
|
}
|
2018-10-13 20:14:46 +00:00
|
|
|
}
|