first commit

This commit is contained in:
2024-07-15 11:28:08 +02:00
commit f52d538ea5
21891 changed files with 6161164 additions and 0 deletions

View File

@@ -0,0 +1,61 @@
.jet-subscribe-form {
.jet-subscribe-form__input {
border: 1px solid #e0e0e8;
background-color: #f7fafd;
border-radius: 4px;
padding: 13px 20px;
margin: 5px 0;
&.mail-invalid {
color: #d9534f;
}
&:focus {
outline: none;
box-shadow: 0 0 10px #e0e0e8;
}
&:first-child {
margin-top: 0;
}
&:last-child {
margin-bottom: 0;
}
}
.jet-subscribe-form__submit {
background-color: #6ec1e4;
}
.jet-subscribe-form__submit-icon {
color: white;
font-size: 15px;
margin-right: 10px;
}
}
.jet-subscribe-form--inline-layout {
.jet-subscribe-form__submit {
margin-left: 10px;
}
}
.jet-subscribe-form--block-layout {
.jet-subscribe-form__submit {
margin-top: 10px;
}
}
.jet-subscribe-form--response-success {
.jet-subscribe-form__message {
color: #5cb85c;
}
}
.jet-subscribe-form--response-error {
.jet-subscribe-form__message {
color: #d9534f;
}
}