Advertisement
Guest User

Author box CSS

a guest
Jan 8th, 2020
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.43 KB | None | 0 0
  1. .author-links a {
  2.     font-size: 3em;
  3.     line-height: 0.5em;
  4.     float: right;
  5. }
  6.  
  7. .author-box {
  8.     padding: 4%;
  9.     margin-top: 60px;
  10.     font-size: 0.8em;
  11.     display: -webkit-box;
  12.     display: -ms-flexbox;
  13.     display: flex;
  14.     -ms-flex-wrap: wrap;
  15.         flex-wrap: wrap;
  16. }
  17.  
  18. .author-box .avatar {
  19.     width: 30px;
  20.     border-radius: 100%;
  21.     margin-right: 20px;
  22. }
  23.  
  24. h5.author-title {
  25.     margin-bottom: 0.5em;
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement