popup.html 2.3 KB

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