You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
308 lines
4.5 KiB
308 lines
4.5 KiB
/*
|
|
Generic
|
|
*/
|
|
|
|
@import './reset.scss';
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
html,
|
|
body {
|
|
font-family: Roboto, Arial;
|
|
color: #4d4d4d;
|
|
font-weight: 400;
|
|
background: #f7f7f7;
|
|
width: 100%;
|
|
height: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
html {
|
|
min-height: 500px;
|
|
}
|
|
|
|
.app-root {
|
|
overflow: hidden;
|
|
position: relative;
|
|
}
|
|
|
|
.app-primary {
|
|
display: flex;
|
|
}
|
|
|
|
input:focus,
|
|
textarea:focus {
|
|
outline: none;
|
|
}
|
|
|
|
/* stylelint-disable */
|
|
#app-content {
|
|
overflow-x: hidden;
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
|
|
@media screen and (max-width: $break-small) {
|
|
background-color: $white;
|
|
}
|
|
}
|
|
/* stylelint-enable */
|
|
|
|
a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
}
|
|
|
|
a:hover {
|
|
color: #df6b0e;
|
|
}
|
|
|
|
input.large-input,
|
|
textarea.large-input {
|
|
padding: 8px;
|
|
}
|
|
|
|
input.large-input {
|
|
height: 36px;
|
|
}
|
|
|
|
.allcaps {
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.page-container {
|
|
width: 408px;
|
|
background-color: $white;
|
|
box-shadow: 0 0 7px 0 rgba(0, 0, 0, .08);
|
|
z-index: 25;
|
|
display: flex;
|
|
flex-flow: column;
|
|
border-radius: 8px;
|
|
|
|
&__header {
|
|
display: flex;
|
|
flex-flow: column;
|
|
border-bottom: 1px solid $geyser;
|
|
padding: 16px;
|
|
flex: 0 0 auto;
|
|
position: relative;
|
|
|
|
&--no-padding-bottom {
|
|
padding-bottom: 0;
|
|
}
|
|
}
|
|
|
|
&__header-close {
|
|
color: $tundora;
|
|
position: absolute;
|
|
top: 16px;
|
|
right: 16px;
|
|
cursor: pointer;
|
|
overflow: hidden;
|
|
|
|
&::after {
|
|
content: '\00D7';
|
|
font-size: 40px;
|
|
line-height: 20px;
|
|
}
|
|
}
|
|
|
|
&__header-row {
|
|
padding-bottom: 10px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
&__footer {
|
|
display: flex;
|
|
flex-flow: row;
|
|
justify-content: center;
|
|
border-top: 1px solid $geyser;
|
|
padding: 16px;
|
|
flex: 0 0 auto;
|
|
|
|
.btn-clear,
|
|
.btn-cancel,
|
|
.btn-confirm {
|
|
font-size: 1rem;
|
|
}
|
|
}
|
|
|
|
&__footer-button {
|
|
height: 55px;
|
|
font-size: 1rem;
|
|
text-transform: uppercase;
|
|
margin-right: 16px;
|
|
border-radius: 2px;
|
|
|
|
&:last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
|
|
&__back-button {
|
|
color: #2f9ae0;
|
|
font-size: 1rem;
|
|
cursor: pointer;
|
|
font-weight: 400;
|
|
}
|
|
|
|
&__title {
|
|
color: $black;
|
|
font-size: 2rem;
|
|
font-weight: 500;
|
|
line-height: 2rem;
|
|
}
|
|
|
|
&__subtitle {
|
|
padding-top: .5rem;
|
|
line-height: initial;
|
|
font-size: .9rem;
|
|
color: $gray;
|
|
}
|
|
|
|
&__tabs {
|
|
display: flex;
|
|
margin-top: 16px;
|
|
}
|
|
|
|
&__tab {
|
|
min-width: 5rem;
|
|
padding: 8px;
|
|
color: $dusty-gray;
|
|
font-family: Roboto;
|
|
font-size: 1rem;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
border-bottom: none;
|
|
margin-right: 16px;
|
|
|
|
&:last-of-type {
|
|
margin-right: 0;
|
|
}
|
|
|
|
&--selected {
|
|
color: $curious-blue;
|
|
border-bottom: 3px solid $curious-blue;
|
|
}
|
|
}
|
|
|
|
&--full-width {
|
|
width: 100% !important;
|
|
}
|
|
|
|
&--full-height {
|
|
height: 100% !important;
|
|
max-height: initial !important;
|
|
min-height: initial !important;
|
|
}
|
|
|
|
&__content {
|
|
overflow-y: auto;
|
|
flex: 1;
|
|
}
|
|
|
|
&__warning-container {
|
|
background: $linen;
|
|
padding: 20px;
|
|
display: flex;
|
|
align-items: start;
|
|
}
|
|
|
|
&__warning-message {
|
|
padding-left: 15px;
|
|
}
|
|
|
|
&__warning-title {
|
|
font-weight: 500;
|
|
}
|
|
|
|
&__warning-icon {
|
|
padding-top: 5px;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 250px) {
|
|
.page-container {
|
|
&__footer {
|
|
flex-flow: column-reverse;
|
|
}
|
|
|
|
&__footer-button {
|
|
width: 100%;
|
|
margin-bottom: 1rem;
|
|
margin-right: 0;
|
|
|
|
&:first-of-type {
|
|
margin-bottom: 0;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 575px) {
|
|
.page-container {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow-y: auto;
|
|
background-color: $white;
|
|
border-radius: 0;
|
|
flex: 1;
|
|
}
|
|
}
|
|
|
|
@media screen and (min-width: 576px) {
|
|
.page-container {
|
|
max-height: 82vh;
|
|
min-height: 570px;
|
|
flex: 0 0 auto;
|
|
}
|
|
}
|
|
|
|
.input-label {
|
|
padding-bottom: 10px;
|
|
font-weight: 400;
|
|
display: inline-block;
|
|
}
|
|
|
|
input.form-control {
|
|
padding-left: 10px;
|
|
font-size: 14px;
|
|
height: 40px;
|
|
border: 1px solid $alto;
|
|
border-radius: 3px;
|
|
width: 100%;
|
|
|
|
&::-webkit-input-placeholder {
|
|
font-weight: 100;
|
|
color: $dusty-gray;
|
|
}
|
|
|
|
&::-moz-placeholder {
|
|
font-weight: 100;
|
|
color: $dusty-gray;
|
|
}
|
|
|
|
&:-ms-input-placeholder {
|
|
font-weight: 100;
|
|
color: $dusty-gray;
|
|
}
|
|
|
|
&:-moz-placeholder {
|
|
font-weight: 100;
|
|
color: $dusty-gray;
|
|
}
|
|
|
|
&--error {
|
|
border: 1px solid $monzo;
|
|
}
|
|
}
|
|
|
|
.hide-text-overflow {
|
|
white-space: nowrap;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
}
|
|
|