1234567891011121314151617181920212223242526272829303132333435 |
- .person-widget{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 145px;
- overflow: hidden;
- float: left;
- margin: 5px 15px 5px 0px;
- img {
- //height: 220px;
- //max-width: fit-content;
- }
- .name{
- display: block;
- text-align: center;
- color: #151515;
- font: 12px/12px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
- font-size: 12px;
- font-style: normal;
- font-weight: 600;
- line-height: 120%;
- margin-top: 12px;
- margin-bottom: 5px;
- }
- .jobtitle{
- display: block;
- color: #151515;
- text-align: center;
- font: 12px/12px "Golos Text",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Ubuntu,Arial,sans-serif;
- font-size: 12px;
- font-style: normal;
- font-weight: 100;
- line-height: 120%;
- }
- }
|