person-wiget.less 847 B

1234567891011121314151617181920212223242526272829303132333435
  1. .person-widget{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. width: 145px;
  6. overflow: hidden;
  7. float: left;
  8. margin: 5px 15px 5px 0px;
  9. img {
  10. //height: 220px;
  11. //max-width: fit-content;
  12. }
  13. .name{
  14. display: block;
  15. text-align: center;
  16. color: #151515;
  17. font: 12px/12px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
  18. font-size: 12px;
  19. font-style: normal;
  20. font-weight: 600;
  21. line-height: 120%;
  22. margin-top: 12px;
  23. margin-bottom: 5px;
  24. }
  25. .jobtitle{
  26. display: block;
  27. color: #151515;
  28. text-align: center;
  29. font: 12px/12px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
  30. font-size: 12px;
  31. font-style: normal;
  32. font-weight: 100;
  33. line-height: 120%;
  34. }
  35. }