fleet/frontend/components/modals/Modal/_styles.scss

53 lines
955 B
SCSS
Raw Normal View History

.modal {
&__background {
2017-01-19 18:00:08 +00:00
@include position(fixed, 0 0 0 0);
background-color: rgba($core-fleet-black, 0.4);
z-index: 101;
overflow: scroll;
display: flex;
justify-content: center;
}
&__content {
margin-top: 10px;
font-size: $x-small;
2016-12-21 18:22:18 +00:00
.input-field {
width: 100%;
}
}
&__ex {
text-decoration: none;
2016-12-21 18:22:18 +00:00
.button {
2017-01-19 18:00:08 +00:00
@include size(30px);
line-height: 30px;
color: $core-fleet-black;
font-size: $x-large;
2017-01-19 18:00:08 +00:00
&:hover {
color: $ui-error;
2017-01-19 18:00:08 +00:00
}
2016-12-21 18:22:18 +00:00
}
}
&__header {
font-size: $large;
font-weight: $regular;
2017-01-19 18:00:08 +00:00
text-align: left;
padding-bottom: 15px;
border-bottom: 1px solid $ui-fleet-blue-15;
display: flex;
justify-content: space-between;
}
&__modal_container {
@include position(absolute, 22px null null null);
background-color: $core-white;
width: 658px;
padding: $pad-xxlarge;
border-radius: 8px;
}
}