MAemilius

Untitled

Jun 20th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. <!DOCTYPE html5>
  2. <html>
  3. <head>
  4. <style type='text/css'>
  5. body {
  6. background: #111;
  7. color: #ccc;
  8. font-family: sans-serif;
  9. }
  10.  
  11. .main.box {
  12. display: inline-block;
  13. width: 250px;
  14. border: 1px solid #333;
  15. border-radius: 4px;
  16. }
  17.  
  18. .box-head.box-label {
  19. padding: 10px;
  20. border-bottom: 1px solid #333;
  21. font-weight: bold;
  22. font-size: 1.2em;
  23. }
  24.  
  25. .d {
  26. display: block;
  27. padding: 5px;
  28. border-top: 1px solid #333333;
  29. font-size: 14px;
  30. font-weight: bold;
  31. color: #aaa;
  32. text-decoration: none;
  33. }
  34.  
  35. .d:first-child {
  36. border-top: none;
  37. }
  38.  
  39. .d:last-child {
  40. border-bottom-left-radius: 4px;
  41. border-bottom-right-radius: 4px;
  42. }
  43.  
  44. .d:hover {
  45. transition: background-color .3s linear;
  46. -webkit-transition: background-color .3s linear;
  47. background-color: #444;
  48. }
  49.  
  50. .popular-list-comment {
  51. padding-left: 20px;
  52. margin-left: 10px;
  53. float: right;
  54. background: url("../img/icon_comment.png") 0px center no-repeat;
  55. color: grey;
  56. }
  57. </style>
  58. </head>
  59. <body>
  60. <div class="main box">
  61. <div class="box-head box-label">
  62. Popular Topics
  63. </div>
  64. <div class="box-tail popular">
  65. <a class="d popular-list-entry" href="#"><span class="popular-list-comment">1000</span>placeholder 5</a>
  66. <a class="d popular-list-entry" href="#">placeholder 4</a>
  67. <a class="d popular-list-entry" href="#">placeholder 3</a>
  68. <a class="d popular-list-entry" href="#">placeholder 2</a>
  69. <a class="d popular-list-entry" href="#">placeholder 1</a>
  70. </div>
  71. </div>
  72. </body>
  73. </html>
Advertisement
Add Comment
Please, Sign In to add comment