// Place all the styles related to the PeopleCrawler controller here. // They will automatically be included in application.css. // You can use Sass (SCSS) here: https://sass-lang.com/ h5 { font-weight: normal; opacity: 0.8; } .profile-picture { float: right; width: 25%; img { width: 100%; max-width: 260px; height: auto; object-fit: contain; } } .people-list { list-style: none; padding: 0; margin: 0; a { text-decoration: none; color: black; } .person { line-height: 72px; width: 100%; padding: 8px 0 8px 0; .list-link { float: left; width: 89%; } .person-icon { display: inline-block; max-width: 48px; height: auto; margin-right: 8px; img { vertical-align: middle; width: 48px; height: 48px; border-radius: 50%; object-fit: cover; } svg { vertical-align: middle; width: 48px; height: auto; } } .person-name { text-align: center; width: 100%; } .add-to-fav { display: inline-block; vertical-align: middle; float: right; width: 36px; height: 36px; svg { width: 100%; height: auto; vertical-align: middle; } } } }