sidebar-author-links.styl 621 B

123456789101112131415161718192021222324252627
  1. .links-of-author {
  2. margin-top: 15px;
  3. a, span.exturl {
  4. border-bottom-color: $black-light;
  5. display: inline-block;
  6. font-size: $font-size-smaller;
  7. margin-bottom: 10px;
  8. margin-right: 10px;
  9. vertical-align: middle;
  10. if (hexo-config('social_icons.transition')) {
  11. the-transition();
  12. }
  13. &::before {
  14. background: rgb(random-color(0, 255) - 50%, random-color(0, 255) - 50%, random-color(0, 255) - 50%);
  15. border-radius: 50%;
  16. content: ' ';
  17. display: inline-block;
  18. height: 4px;
  19. margin-right: 3px;
  20. vertical-align: middle;
  21. width: 4px;
  22. }
  23. }
  24. }