| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132 |
- .lg-comment-box {
- width: 420px;
- max-width: 100%;
- position: absolute;
- right: 0;
- top: 0;
- bottom: 0;
- z-index: 9999;
- background-color: #fff;
- will-change: transform;
- -moz-transform: translate3d(100%, 0, 0);
- -o-transform: translate3d(100%, 0, 0);
- -ms-transform: translate3d(100%, 0, 0);
- -webkit-transform: translate3d(100%, 0, 0);
- transform: translate3d(100%, 0, 0);
- -webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
- -moz-transition: -moz-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
- -o-transition: -o-transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
- transition: transform 0.4s cubic-bezier(0, 0, 0.25, 1) 0s;
- }
- .lg-comment-box .lg-comment-title {
- margin: 0;
- color: #fff;
- font-size: 18px;
- }
- .lg-comment-box .lg-comment-header {
- background-color: #000;
- padding: 12px 20px;
- position: absolute;
- left: 0;
- right: 0;
- top: 0;
- }
- .lg-comment-box .lg-comment-body {
- height: 100% !important;
- padding-top: 43px !important;
- width: 100% !important;
- }
- .lg-comment-box .fb-comments {
- height: 100%;
- width: 100%;
- background: url("../images/loading.gif") no-repeat scroll center center #fff;
- overflow-y: auto;
- display: inline-block;
- }
- .lg-comment-box .fb-comments[fb-xfbml-state='rendered'] {
- background-image: none;
- }
- .lg-comment-box .fb-comments > span {
- max-width: 100%;
- }
- .lg-comment-box .lg-comment-close {
- position: absolute;
- right: 5px;
- top: 12px;
- cursor: pointer;
- font-size: 20px;
- color: #999;
- will-change: color;
- -webkit-transition: color 0.2s linear;
- -o-transition: color 0.2s linear;
- transition: color 0.2s linear;
- }
- .lg-comment-box .lg-comment-close:hover {
- color: #fff;
- }
- .lg-comment-box .lg-comment-close:after {
- content: '\e070';
- }
- .lg-comment-box iframe {
- max-width: 100% !important;
- width: 100% !important;
- }
- .lg-comment-box #disqus_thread {
- padding: 0 20px;
- }
- .lg-outer .lg-comment-overlay {
- background-color: rgba(0, 0, 0, 0.25);
- bottom: 0;
- cursor: default;
- left: 0;
- position: fixed;
- right: 0;
- top: 0;
- z-index: 1081;
- opacity: 0;
- visibility: hidden;
- will-change: visibility, opacity;
- -webkit-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
- -o-transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
- transition: visibility 0s linear 0.18s, opacity 0.18s linear 0s;
- }
- .lg-outer .lg-comment-toggle:after {
- content: '\e908';
- }
- .lg-outer.lg-comment-active .lg-comment-overlay {
- -webkit-transition-delay: 0s;
- transition-delay: 0s;
- -moz-transform: translate3d(0, 0px, 0);
- -o-transform: translate3d(0, 0px, 0);
- -ms-transform: translate3d(0, 0px, 0);
- -webkit-transform: translate3d(0, 0px, 0);
- transform: translate3d(0, 0px, 0);
- opacity: 1;
- visibility: visible;
- }
- .lg-outer.lg-comment-active .lg-comment-toggle {
- color: #fff;
- }
- .lg-outer.lg-comment-active .lg-comment-box {
- -moz-transform: translate3d(0, 0, 0);
- -o-transform: translate3d(0, 0, 0);
- -ms-transform: translate3d(0, 0, 0);
- -webkit-transform: translate3d(0, 0, 0);
- transform: translate3d(0, 0, 0);
- }
|