author.scss 821 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. @import "vars";
  2. .author {
  3. position: relative;
  4. padding-top: 7px;
  5. padding-right: 15px;
  6. padding-left: 60px;
  7. margin-left: -60px;
  8. margin-right: -25px;
  9. border-top: 1px solid rgba(255,255,255,0.05) !important;
  10. .author-avatar {
  11. background-color: $blue;
  12. font-family: $main-font;
  13. color: white;
  14. display: inline-block;
  15. height: 30px;
  16. width: 30px;
  17. line-height: 30px;
  18. text-align: center;
  19. border-radius: $radius;
  20. background-size: cover;
  21. background-position: center;
  22. }
  23. .author-time,
  24. .author-name {
  25. font-weight: 300;
  26. font-size: 10px;
  27. line-height: 10px;
  28. opacity: 0.5;
  29. font-family: $main-font;
  30. }
  31. .author-time {
  32. position: absolute;
  33. right: 15px;
  34. top: 15px;
  35. }
  36. }
  37. #chat .author-avatar{
  38. position: absolute;
  39. top: 14px;
  40. left: 15px;
  41. }