46 lines
797 B
CSS
46 lines
797 B
CSS
.newsletter {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background-color: #000;
|
|
color: #fff;
|
|
padding: 32px 0 15px 0;
|
|
}
|
|
|
|
.newsletter-title {
|
|
font-weight: 400;
|
|
font-size: 24px;
|
|
line-height: 38px;
|
|
}
|
|
|
|
.newsletter-description {
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
line-height: 25px;
|
|
}
|
|
|
|
.newsletter-input {
|
|
background-color: #000;
|
|
color: #929292;
|
|
border-top: none;
|
|
border-left: none;
|
|
border-right: none;
|
|
border-bottom: solid 1px #929292;
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
line-height: 25px;
|
|
}
|
|
|
|
.newsletter-btn {
|
|
border-top: none;
|
|
border-left: none;
|
|
border-right: none;
|
|
border-bottom: 3px solid #bfbfbf;
|
|
background-color: #000;
|
|
color: #fff;
|
|
text-transform: uppercase;
|
|
font-weight: 700;
|
|
font-size: 14px;
|
|
line-height: 19px;
|
|
}
|