通用评论

index.css 1.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .comment-item-box {
  2. margin: 10px 0 0 0;
  3. padding: 15px 5px 0 5px;
  4. border-top: 1px solid #eee;
  5. }
  6. .comment-item-left {
  7. display: inline-block;
  8. vertical-align: top;
  9. width: 40px;
  10. }
  11. .comment-item-right {
  12. display: inline-block;
  13. width: 90%;
  14. margin-left: 10px;
  15. margin-bottom: 20px;
  16. }
  17. .comment-item-content {
  18. margin: 10px 0;
  19. word-break: break-all;
  20. }
  21. .comment-item-bottom {
  22. margin: 20px auto;
  23. }
  24. .comment-item-bottom-left {
  25. float: left;
  26. user-select: none;
  27. }
  28. .comment-item-bottom-right {
  29. float: right;
  30. margin-left: 5px;
  31. cursor: pointer;
  32. }
  33. .comment-favor {
  34. font-size: 20px;
  35. }
  36. .comment-favored {
  37. color: #4a90e2;
  38. }
  39. .comment-item-image .comment-img {
  40. margin-right: 10px;
  41. }
  42. @media screen and (max-width: 616px) and (min-width: 449px) {
  43. .comment-item-right {
  44. display: inline-block;
  45. width: 85%;
  46. margin-left: 10px;
  47. }
  48. }
  49. @media screen and (max-width: 449px) and (min-width: 365px) {
  50. .comment-item-right {
  51. display: inline-block;
  52. width: 80%;
  53. margin-left: 10px;
  54. }
  55. }
  56. @media screen and (max-width: 365px) {
  57. .comment-item-right {
  58. display: inline-block;
  59. width: 75%;
  60. margin-left: 10px;
  61. }
  62. }