commento/frontend/sass/email-main.scss
Adhityaa 2020405e8b frontend, api: allow custom emails as commenters
I'm really sorry this came out as one huge commit, but I'm afraid
I can't split this up.

Closes https://gitlab.com/commento/commento-ce/issues/9
2018-06-10 22:58:54 +05:30

59 lines
1.1 KiB
SCSS

@import "colors-main.scss";
@import "common-main.scss";
.commento-email-container {
display: flex;
justify-content: center;
width: 100%;
margin: 8px 0px;
.commento-email {
@extend .shadow;
border-radius: 4px;
background: $white;
width: 100%;
max-width: 400px;
.commento-input {
height: 40px;
background: $white;
border: none;
outline: none;
padding: 5px;
padding-left: 10px;
width: calc(100% - 120px);
}
.commento-input::placeholder {
color: $gray-5;
}
.commento-email-button {
height: 40px;
min-width: 110px;
float: right;
background: $white;
border: none;
outline: none;
padding: 0px 10px 0px 10px;
border-left: 1px solid $gray-1;
font-size: 12px;
text-transform: uppercase;
text-align: center;
font-weight: bold;
color: $blue-7;
cursor: pointer;
transition: all 0.2s;
}
.commento-email-button:hover {
color: $blue-6;
}
.commento-email-button:disabled {
cursor: default;
color: $gray-6;
}
}
}