123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- .body {
- margin-top: 90px;
- }
- .body .color {
- color: #2382ff;
- }
- .body h3 {
- margin-top: 0;
- }
- .body #content {
- text-align: justify;
- }
- .body #content p {
- text-indent: 30px;
- }
- .body #content > p:last-child {
- padding: 10px 0px;
- }
- .body #read {
- margin-top: 20px;
- text-align: center;
- }
- .body #read .good {
- border-radius: 5px;
- border: 1px solid #e6e6e6;
- display: inline-block;
- padding: 5px 30px;
- margin-bottom: 10px;
- }
- .body .articles ul {
- width: 100%;
- border-top: 1px solid #e6e6e6;
- padding: 10px 20px;
- list-style: square;
- color: #777;
- overflow: hidden;
- }
- .body .articles ul li {
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- width: 100%;
- padding: 5px 0px;
- }
- .body #comment .h5 {
- display: flex;
- justify-content: space-between;
- align-content: center;
- }
- .body #comment .remind {
- text-align: center;
- background-color: #e6e6e6;
- padding: 5px;
- border-radius: 5px;
- margin: 10px 0px;
- }
- .body #comment .comment {
- border-top: 1px solid #e6e6e6;
- padding-top: 10px;
- }
- .body #comment .comment .nocomment,
- .body #comment .comment .loading,
- .body #comment .comment .nodata {
- display: none;
- text-align: center;
- margin: 10px;
- }
- .body #comment .comment .nocomment {
- display: block;
- padding-bottom: 10px;
- }
- .body #comment .comment .nocomment:hover {
- color: #2382ff;
- }
- .body #comment .comment .user {
- width: 100%;
- padding: 20px 0;
- border-bottom: 1px solid #e6e6e6;
- display: grid;
- grid-template-columns: 10% 90%;
- }
- .body #comment .comment .user .u-img {
- width: 100%;
- text-align: center;
- }
- .body #comment .comment .user .u-img .img {
- width: 100%;
- max-width: 64px;
- }
- .body #comment .comment .user .u-content {
- margin-left: 10px;
- text-align: justify;
- }
- .body #comment .comment .user .u-content .u-name {
- font-size: 16px;
- }
- .body #comment .comment .user .u-content .u-detail {
- padding: 5px 0px;
- }
- .body #comment .comment .user .u-content .u-flex {
- display: flex;
- justify-content: space-between;
- align-items: center;
- }
- #toast #report {
- display: none;
- text-align: start;
- }
- #toast #report ul {
- list-style: none;
- padding: 0;
- }
- #toast #report ul li {
- padding: 5px;
- border-bottom: 1px solid #e6e6e6;
- }
- #toast #ping {
- display: none;
- }
- #toast #ping .alert {
- display: none;
- padding: 5px;
- margin-bottom: 5px;
- }
|