You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
638 B

  1. .card {
  2. display: flex;
  3. background: $primary-color;
  4. box-shadow: 4px 3px 0 rgba(0, 0, 0, 0.1);
  5. .bio {
  6. flex-grow: 1;
  7. }
  8. .name {
  9. font-size: 20px;
  10. line-height: 18px * 1.5;
  11. color: $quaternary-color;
  12. small {
  13. display: block;
  14. font-size: 14px;
  15. color: $quaternary-color;
  16. }
  17. }
  18. .avatar {
  19. width: 96px;
  20. float: left;
  21. margin-right: 10px;
  22. padding: 10px;
  23. padding-right: 0;
  24. padding-left: 9px;
  25. margin-top: -30px;
  26. img {
  27. width: 94px;
  28. height: 94px;
  29. display: block;
  30. border-radius: 5px;
  31. box-shadow: 4px 3px 0 rgba(0, 0, 0, 0.1);
  32. }
  33. }
  34. }