2017-11-21 23:12:31 -05:00
|
|
|
.subscription-form-section-component {
|
2017-09-26 15:35:30 -04:00
|
|
|
$trans-speed: 100ms;
|
2016-01-28 22:28:05 -05:00
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
right: 0px;
|
2016-08-16 19:33:02 -04:00
|
|
|
left: 0px;
|
2016-01-28 22:28:05 -05:00
|
|
|
transform: translateY(-50%);
|
2016-08-16 19:33:02 -04:00
|
|
|
margin-right: auto;
|
|
|
|
margin-left: auto;
|
2016-01-28 22:28:05 -05:00
|
|
|
width: 200px;
|
|
|
|
|
|
|
|
input {
|
|
|
|
margin: 5px;
|
2016-08-16 19:33:02 -04:00
|
|
|
width: calc(100% - 10px);
|
|
|
|
padding: 3px;
|
2017-09-26 15:35:30 -04:00
|
|
|
border: 1px solid lighten($c-accent, 50%);
|
|
|
|
transition: border-color $trans-speed;
|
|
|
|
|
|
|
|
&.error {
|
|
|
|
border-color: $c-error;
|
|
|
|
}
|
2016-01-28 22:28:05 -05:00
|
|
|
}
|
|
|
|
}
|