Guest User

Untitled

a guest
Apr 21st, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. /* profile picture */
  2. .pp {
  3. display:inline-block;
  4.  
  5. background-repeat: no-repeat !important;
  6.  
  7. -webkit-background-size: cover !important;
  8. -moz-background-size: cover !important;
  9. -o-background-size: cover !important;
  10. background-size: cover !important;
  11.  
  12. background-position: center center !important;
  13. border-radius: 50%;
  14. width: 100%;
  15. height: 100px;
  16. }
  17.  
  18. .pp-xxxs { width: 18px; height: 18px; }
  19. .pp-xxs { width: 25px; height: 25px; }
  20. .pp-xs { width: 50px; height: 50px; }
  21. .pp-sm { width: 100px; height: 100px; }
  22. .pp-md { width: 200px; height: 200px; }
  23. .pp-lg { width: 400px; height: 400px; }
  24.  
  25. .pp-shadow {
  26. box-shadow: 0 0 8px rgba(0, 0, 0, .8);
  27. -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
  28. -moz-box-shadow: 0 0 8px rgba(0, 0, 0, .8);
  29. }
Add Comment
Please, Sign In to add comment