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.

71 lines
1.2 KiB

  1. .card {
  2. background: $primary-color image-url('background-photo.jpeg');
  3. background-size: cover;
  4. padding: 60px 0;
  5. padding-bottom: 10px;
  6. border-radius: 4px 4px 0 0;
  7. box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  8. .name {
  9. display: block;
  10. font-size: 20px;
  11. line-height: 18px * 1.5;
  12. color: #fff;
  13. font-weight: 500;
  14. text-align: center;
  15. small {
  16. display: block;
  17. font-size: 14px;
  18. color: #2b90d9;
  19. font-weight: 400;
  20. }
  21. }
  22. .avatar {
  23. width: 120px;
  24. margin: 0 auto;
  25. margin-bottom: 15px;
  26. img {
  27. width: 120px;
  28. height: 120px;
  29. display: block;
  30. border-radius: 120px;
  31. }
  32. }
  33. .details {
  34. display: flex;
  35. margin-top: 30px;
  36. }
  37. .counter {
  38. width: 80px;
  39. color: #9baec8;
  40. padding: 0 10px;
  41. border-right: 1px solid #9baec8;
  42. cursor: default;
  43. .counter-label {
  44. font-size: 12px;
  45. text-transform: uppercase;
  46. display: block;
  47. margin-bottom: 5px;
  48. }
  49. .counter-number {
  50. font-weight: 500;
  51. font-size: 18px;
  52. color: #fff;
  53. }
  54. }
  55. .bio {
  56. flex: 1;
  57. font-size: 14px;
  58. line-height: 18px;
  59. padding: 5px 10px;
  60. color: #d9e1e8;
  61. }
  62. }