2018-12-19 08:10:12 +08:00
|
|
|
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700');
|
2018-06-11 01:15:56 +08:00
|
|
|
|
2018-09-23 12:52:34 +08:00
|
|
|
.commento-root-min-height {
|
|
|
|
min-height: 350px;
|
|
|
|
}
|
|
|
|
|
2018-06-16 21:08:24 +08:00
|
|
|
.commento-root {
|
2018-06-07 16:00:53 +08:00
|
|
|
overflow-x: hidden;
|
2018-12-20 13:48:43 +08:00
|
|
|
padding: 0px;
|
|
|
|
|
|
|
|
* {
|
|
|
|
font-family: "Source Sans Pro", "Segoe UI", "Roboto", "Helvetica Neue", sans-serif;
|
|
|
|
font-size: 15px;
|
|
|
|
line-height: 1.5;
|
|
|
|
color: #50596c;
|
|
|
|
text-rendering: optimizeLegibility;
|
|
|
|
}
|
2018-06-07 16:00:53 +08:00
|
|
|
|
|
|
|
@import "colors-main.scss";
|
2019-02-13 11:48:36 +08:00
|
|
|
@import "commento-common.scss";
|
2019-02-13 14:30:17 +08:00
|
|
|
@import "commento-logged.scss"; // Logged in as <name>
|
|
|
|
@import "commento-mod-tools.scss"; // Moderator tools and buttons
|
|
|
|
@import "commento-input.scss"; // Textarea, anonymous checkbox, submit button
|
|
|
|
@import "commento-card.scss"; // Each comment card
|
|
|
|
@import "commento-login.scss"; // Popup box when logging in
|
|
|
|
@import "commento-footer.scss"; // Powered by Commento
|
2018-06-07 16:00:53 +08:00
|
|
|
|
|
|
|
.commento-hidden {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2018-06-11 01:15:56 +08:00
|
|
|
.commento-blurred {
|
|
|
|
filter: blur(4px);
|
|
|
|
}
|
|
|
|
|
|
|
|
.commento-main-area {
|
|
|
|
transition: filter 0.2s;
|
|
|
|
}
|
|
|
|
|
2018-06-07 16:00:53 +08:00
|
|
|
.commento-error-box {
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 4px;
|
|
|
|
height: 32px;
|
|
|
|
text-align: center;
|
|
|
|
color: $red-7;
|
2018-12-19 08:10:12 +08:00
|
|
|
font-weight: 700;
|
2018-06-07 16:00:53 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.commento-moderation-notice {
|
|
|
|
width: 100%;
|
|
|
|
border-radius: 4px;
|
|
|
|
height: 32px;
|
|
|
|
text-align: center;
|
|
|
|
color: $orange-7;
|
2018-12-19 08:10:12 +08:00
|
|
|
font-weight: 700;
|
2018-06-07 16:00:53 +08:00
|
|
|
margin-top: 16px;
|
|
|
|
}
|
|
|
|
}
|