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.

43 lines
792 B

2 years ago
  1. .personal{
  2. .box{
  3. width: 100%;
  4. height: 200px;
  5. position: relative;
  6. .bg-cover{
  7. width: 100%;
  8. height: 200px;
  9. top: 0;
  10. left: 0;
  11. object-fit:cover;
  12. position: absolute;
  13. border-bottom-left-radius: 50px;
  14. border-bottom-right-radius: 50px;
  15. }
  16. .avatar{
  17. position: absolute;
  18. left: calc(50% - 71px);
  19. bottom: -71px;
  20. .img{
  21. @include img-size(142px,142px);
  22. border-radius: 71px;
  23. }
  24. }
  25. }
  26. .box-block{
  27. display: block;
  28. height: 71px;
  29. width: 100%;
  30. }
  31. .tag{
  32. background: linear-gradient(104deg, #1DD0DF -2%, #1DD0DF -2%, #1BEDFF -2%, #14BDEB 108%);
  33. padding: 5px 15px;
  34. font-size: 12px;
  35. border-radius: 20px;
  36. }
  37. }