195 lines
3.3 KiB
SCSS
195 lines
3.3 KiB
SCSS
@import "colors-main.scss";
|
|
|
|
textarea,
|
|
input[type=text] {
|
|
background: #ffffff;
|
|
border: 1px solid rgba(50, 50, 93, .1);
|
|
border-radius: 3px;
|
|
color: #525f7f;
|
|
}
|
|
|
|
input[type=text]::placeholder {
|
|
color: #cacaca;
|
|
}
|
|
|
|
textarea::placeholder {
|
|
color: #aaa;
|
|
font-size: 20px;
|
|
display: flex;
|
|
line-height: 80px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
}
|
|
|
|
textarea {
|
|
display: inline-block;
|
|
font-family: "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
|
|
padding: 8px;
|
|
outline: none;
|
|
overflow: auto;
|
|
min-height: 100px;
|
|
width: 100%;
|
|
}
|
|
|
|
.commento-red-border {
|
|
border: 1px solid $red-7;
|
|
}
|
|
|
|
.commento-textarea-container {
|
|
position: relative;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
.commento-submit-button {
|
|
transform: none;
|
|
}
|
|
}
|
|
|
|
.commento-oauth-buttons-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.commento-oauth-buttons,
|
|
.commento-account-buttons,
|
|
.commento-account-buttons-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
position: absolute;
|
|
z-index: 1;
|
|
}
|
|
|
|
.commento-account-buttons {
|
|
position: static;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.commento-account-buttons-container {
|
|
top: 3rem;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.commento-oauth-buttons {
|
|
display: contents;
|
|
}
|
|
|
|
.commento-account-buttons-question {
|
|
position: absolute;
|
|
top: 0.5rem;
|
|
display: block;
|
|
text-align: center;
|
|
justify-content: center;
|
|
align-items: center;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
padding: 6px;
|
|
color: $gray-8;
|
|
outline: none;
|
|
}
|
|
|
|
.commento-button {
|
|
display: inline-flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
text-align: center;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
line-height: 24px;
|
|
font-size: 14px;
|
|
padding: 6px;
|
|
padding-left: 8px;
|
|
padding-right: 8px;
|
|
box-shadow: 0 4px 6px rgba(50,50,93,.11),0 1px 3px rgba(0,0,0,.08);
|
|
border: 1px solid transparent;
|
|
border-radius: 3px;
|
|
color: #fff;
|
|
width: 100px;
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
}
|
|
|
|
.commento-google-button {
|
|
background: #dd4b39;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.commento-github-button {
|
|
background: #000000;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.commento-anonymous-button {
|
|
background: #096fa6;
|
|
text-transform: uppercase;
|
|
font-size: 12px;
|
|
}
|
|
|
|
.commento-blurred-textarea {
|
|
list-style: none;
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
align-items: center;
|
|
justify-content: center;
|
|
justify-content: space-between;
|
|
will-change: transform;
|
|
}
|
|
|
|
.commento-approve-button,
|
|
.commento-delete-button,
|
|
.commento-submit-button {
|
|
margin-top: 10px;
|
|
font-size: 14px;
|
|
width: -moz-fit-content;
|
|
width: -webkit-fit-content;
|
|
width: -ms-fit-content;
|
|
width: -o-fit-content;
|
|
width: fit-content;
|
|
}
|
|
|
|
.commento-create-button {
|
|
width: 120px;
|
|
background: $pink-9;
|
|
}
|
|
|
|
.commento-login-button {
|
|
width: 50px;
|
|
background: $cyan-9;
|
|
}
|
|
|
|
.commento-submit-button {
|
|
float: right;
|
|
background: $indigo-7;
|
|
}
|
|
|
|
.commento-approve-button {
|
|
background: $green-7;
|
|
}
|
|
|
|
.commento-delete-button {
|
|
background: $red-7;
|
|
}
|
|
|
|
.commento-button-margin {
|
|
padding-bottom: 60px;
|
|
}
|
|
|
|
.commento-mod-tools-lock-button {
|
|
color: $gray-6;
|
|
background: none;
|
|
border: none;
|
|
font-weight: bold;
|
|
font-size: 12px;
|
|
text-transform: uppercase;
|
|
margin-left: 12px;
|
|
padding: 2px;
|
|
}
|
|
|
|
.commento-mod-tools-lock-button:hover {
|
|
cursor: pointer;
|
|
}
|