page_comments.css 603 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .entry {
  2. display: block;
  3. margin: 5px 5px 10px;
  4. padding: 24px 8px 4px;
  5. position: relative;
  6. color: rgba(255,255,255,0.9);
  7. background-color: rgba(0,32,240,0.7);
  8. }
  9. .entry a {
  10. cursor: pointer;
  11. text-decoration: underline;
  12. }
  13. .entry .time {
  14. position: absolute;
  15. top: 4px;
  16. right: 8px;
  17. text-align: right;
  18. font-size: 9.5pt;
  19. font-weight: 600;
  20. }
  21. .entry .user {
  22. position: absolute;
  23. top: 4px;
  24. left: 8px;
  25. font-size: 9.5pt;
  26. font-weight: 600;
  27. }
  28. .entry .content {
  29. display: block;
  30. padding: 4px 8px;
  31. font-size: 11pt;
  32. }