AstroJS/botanjs/src/Astro/Blog/Components/Comment.css

289 lines
4.8 KiB
CSS

.comment-stage {
width: 80%;
float: right;
padding-bottom: 1em;
position: relative;
}
.c_body {
position: relative;
padding-left: 10px;
}
.c_title {
padding: 1em 0.5em;
}
.c_bsign {
margin-left: -0.47em;
padding: 0.1em 0.5em 0.1em 1em;
font-size: 2em;
color: white;
background: cornflowerblue;
}
.uc_ntoggle {
font-family: custom-sans;
vertical-align: top;
padding: 0.2em 0em;
}
.uc_ntoggle:before { content: '..'; }
.uc_ntoggle:after { content: '!'; }
.cr_ntoggle {
font-family: custom-sans;
padding: 0;
margin: 0;
position: absolute;
width: 1.5em;
height: 1.5em;
bottom: 0;
right: -3em;
border-radius: 2em 2em 2em 0em;
border: 0.5em solid white;
line-height: 1.5em !important;
background-color: white;
/* box-shadow: 2px 2px 10px -5px black; */
}
.cr_ntoggle:before, .cr_ntoggle:after {
padding: 0;
border-radius: 2em;
}
.cr_ntoggle:before {
content: '..';
background-color: slategrey;
}
.cr_ntoggle:after { content: '!'; }
.c_comm {
position: relative;
left: 1.6em;
padding-right: 1.6em;
}
.c_comm > .c_cont:after {
content: "";
width: 0;
height: 0;
border-top: 1em solid transparent;
border-bottom: 1em solid transparent;
border-right: 1em solid white;
position: absolute;
top: 1em;
left: -0.9em;
}
.c_comm > .c_cont:before {
content: "";
top: 0;
left: -2.15em;
position: absolute;
background: cornflowerblue;
width: 8px;
height: 100%;
}
.c_cont {
position: relative;
background-color: white;
padding: 1em;
margin-top: 1em;
border: 1px solid #D7D4C9
}
.c_text {
padding-bottom: 0.5em;
word-wrap: break-word;
}
.c_info > div:first-child, .c_info > div > a {
text-align: right;
color: #D4145A;
}
.c_info > div:last-child {
text-align: right;
color: #AAA;
}
.cu_stack {
/* padding 0.5 - 0.2 border width */
margin: 0 0 -0.3em 0.3em;
position: relative;
text-align: right;
width: 100%;
}
.cu_stack > div {
display: inline-block;
}
.cu_avatar {
/* Equal to the border width */
margin: 0 0 -0.2em 0.5em;
}
.cu_avatar > img {
border: 0.2em white solid;
box-shadow: 0px 0px 5px 0 black;
width: 64px;
height: 64px;
float: right;
}
.reply {
margin-left: 20%;
width: 80%;
}
.reply > .c_cont:after, .r_indicator {
content: "";
width: 0;
height: 0;
border-left: 1em solid transparent;
border-right: 1em solid transparent;
border-bottom: 1em solid white;
position: absolute;
top: 0;
right: 1em;
}
#ri_switch[data-pointy="1"] { top: -1em; }
.c_relative_wrap {
position: relative;
padding: 1em;
background: radial-gradient(circle, rgba(0, 0, 0, 0) 10px, #EEE 10px) 0px 10px, #FFF;
background-size: 20px 20px;
}
.commentblock {
margin-top: 1em;
width: 100%;
position: relative;
#background: white;
}
#c_submit {
background: cornflowerblue;
}
#c_submit:hover {
background: cadetblue;
}
.c_reply {
background: Coral;
}
.c_reply:hover {
background: LightCoral;
}
.c_tag {
cursor: pointer;
position: absolute;
overflow: hidden;
height: 100%;
width: 0;
right: 0;
top: 0;
}
.c_tag > span {
-moz-transform: rotate(90deg);
-moz-transform-origin: 50% 50%;
-webkit-transform: rotate(90deg);
-webkit-transform-origin: 50% 50%;
transform: rotate(90deg);
transform-origin: 50% 50%;
font-size: 1.5em;
display: block;
color: white;
}
.commentInput {
width: 100%;
height: 80px;
font-size: 1.2em;
font-family: custom-sans;
}
.c_caption {
font-size: 1.2em;
font-family: custom-sans;
}
.c_false_input {
font-size: 0.8em;
font-size: custom-serif;
font-style: italic;
color: red;
text-align: right;
height: 0;
overflow: hidden;
}
.nocomment {
font-size: 1.2em;
padding: 1em;
background: white;
font-family: custom-serif !important;
margin: 1em;
}
.info_field > div{
margin: 0.2em 0;
text-align: right;
}
.info_field .website span { width: 20%; }
.info_field .website input { width: 80%; }
iframe[src="about:blank"] {
/* recaptcha about:blank page */
display: none;
}
.commentblock, #capcha_wrapper, #c_input_panel, .c_comm {
-webkit-transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
-moz-transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
-ms-transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
-o-transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000);
transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
-moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
-ms-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
-o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); /* easeInOutQuart */
}
#c_input_panel.reply {
max-width: 80%;
}
.c_so_sorry {
padding: 0.2em;
font-size: 0.8em;
color: orangered;
display: none;
}