lbry.tech/app/sass/partials/_email-subscribe.scss

138 lines
2.3 KiB
SCSS
Raw Normal View History

2018-07-12 17:21:42 +02:00
.newsletter-cta {
background-color: rgba($black, 0.2);
padding-top: 1rem;
padding-bottom: 1rem;
text-align: center;
> div:first-of-type {
margin-right: auto;
margin-left: auto;
@media (min-width: 551px) {
width: 500px;
}
@media (max-width: 550px) {
width: 90%;
}
}
&::after {
@include clearfix;
}
}
.newsletter-cta__title {
font-size: 0.8rem;
letter-spacing: 0.05rem;
margin-bottom: 0.75rem;
text-transform: uppercase;
}
.newsletter-cta__input,
.newsletter-cta__submit {
@extend .__button-padding-horizontal;
border-style: solid;
border-width: 1px;
@media (max-width: 550px) {
width: 100%;
}
}
.newsletter-cta__input {
2018-10-06 00:46:08 +02:00
height: 38px;
2018-07-12 17:21:42 +02:00
background-color: $white;
font-size: 1rem;
transition: border 0.2s;
@media (min-width: 551px) {
width: calc(100% - 112px);
2018-10-06 00:46:08 +02:00
float: left;
2018-07-12 17:21:42 +02:00
}
@media (max-width: 550px) {
text-align: center;
}
&:not(:focus) {
border-top-color: $black;
border-left-color: $black;
@media (min-width: 551px) {
border-right-color: transparent;
2018-10-06 00:46:08 +02:00
border-bottom-color: $black;
2018-07-12 17:21:42 +02:00
}
@media (max-width: 550px) {
border-right-color: $black;
2018-10-06 00:46:08 +02:00
border-bottom-color: transparent;
2018-07-12 17:21:42 +02:00
}
}
&:focus {
border-top-color: mix($black, $teal, 20%);
border-left-color: mix($black, $teal, 20%);
@media (min-width: 551px) {
border-right-color: transparent;
2018-10-06 00:46:08 +02:00
border-bottom-color: mix($black, $teal, 20%);
2018-07-12 17:21:42 +02:00
}
@media (max-width: 550px) {
border-right-color: mix($black, $teal, 20%);
2018-10-06 00:46:08 +02:00
border-bottom-color: transparent;
2018-07-12 17:21:42 +02:00
}
}
}
.newsletter-cta__submit {
@extend .__button-basic;
@extend .__button-padding-vertical;
color: $white;
@media (min-width: 551px) {
width: 112px; height: 38px;
2018-10-06 00:46:08 +02:00
left: -1px;
2018-07-12 17:21:42 +02:00
float: right;
}
@media (max-width: 550px) {
top: -1px;
2018-10-06 00:46:08 +02:00
display: block;
2018-07-12 17:21:42 +02:00
}
&:not(:hover) {
background-color: $black;
border-color: $black;
}
&:hover {
background-color: $teal;
border-color: mix($black, $teal, 20%);
}
}
.newsletter-cta__message {
@include clearfix;
color: $white;
2018-10-10 21:04:16 +02:00
cursor: default;
display: inline-block;
font-size: 0.8rem;
text-align: center;
&:not(:empty) {
2018-10-10 21:04:16 +02:00
margin: 0.5rem auto 0; padding: 0.25rem 1rem;
}
&:not(.error) {
background-color: $teal;
}
&.error {
background-color: $red;
}
2018-07-12 17:21:42 +02:00
}