popup.html 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. <html>
  2. <head>
  3. <style>
  4. * {
  5. margin: 0;
  6. padding: 0;
  7. border: 0;
  8. }
  9. body {
  10. margin: 0;
  11. padding: 0;
  12. width: 380px;
  13. border: 0;
  14. }
  15. ul, li {
  16. list-style: none;
  17. }
  18. a {
  19. text-decoration: none;
  20. }
  21. .message_loading {
  22. padding: 6px;
  23. font-size: 14px;
  24. }
  25. .message_lists {
  26. max-height: 500px;
  27. overflow: auto;
  28. }
  29. .message_box {
  30. margin: 6px 16px;
  31. padding: 6px 0;
  32. color: #555555;
  33. background-color: #ffffff;
  34. border-bottom: 1px dashed #e5e5e5;
  35. position: relative;
  36. }
  37. .message_box.last {
  38. border-bottom: 0;
  39. }
  40. .message_username {
  41. font-size: 16px;
  42. font-weight: 600;
  43. margin-bottom: 8px;
  44. }
  45. .message_host {
  46. color: #888888;
  47. font-size: 12px;
  48. margin-bottom: 2px;
  49. cursor: pointer;
  50. }
  51. .message_host:hover {
  52. color: #555555;
  53. }
  54. .message_unread {
  55. position: absolute;
  56. top: 6px;
  57. right: 0;
  58. height: 18px;
  59. line-height: 18px;
  60. color: #ffffff;
  61. background-color: #ff0000;
  62. text-align: center;
  63. border-radius: 10px;
  64. padding: 1px 6px;
  65. font-size: 12px;
  66. transform: scale(0.9);
  67. z-index: 1;
  68. cursor: pointer;
  69. transition: all 0.3s;
  70. }
  71. .message_unread:hover {
  72. transform: scale(0.98);
  73. }
  74. .message_unread.zero {
  75. background-color: #2196F3;
  76. }
  77. .message_delete {
  78. position: absolute;
  79. bottom: 6px;
  80. right: 6px;
  81. color: #cacaca;
  82. cursor: pointer;
  83. }
  84. .message_delete:hover {
  85. color: #ff3c11;
  86. }
  87. </style>
  88. </head>
  89. <body>
  90. <div id="message_div">
  91. <div class="message_loading">Loading...</div>
  92. </div>
  93. <script src="js/jquery-3.1.1.min.js"></script>
  94. <script src="js/base.js"></script>
  95. <script src="js/popup.js"></script>
  96. </body>
  97. </html>