File size: 777 Bytes
f5071ca |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
.ProfileCard {
width: 25%;
margin: 15px;
cursor: pointer;
}
.ProfileCardDropdown {
width: 90%;
display: flex;
align-items: center;
}
.ProfileCardDropdown > * {
margin-right: 10px;
}
.ProfileCardDropdown:hover span {
text-decoration: underline;
}
.ProfileCardDropdown img {
width: 20%;
height: 100%;
}
.ProfileCard span {
font-size: 3vw;
color: grey;
}
.ProfileCard img {
width: 100%;
height: 100%;
margin-bottom: 10px;
border: 3px solid transparent;
}
.ProfileCard:hover img {
border-color: white;
}
.ProfileCard:hover span {
color: white;
}
@media(min-width: 600px) {
.ProfileCard {
width: 18%;
height: 20%;
}
.ProfileCard span {
font-size: 1.3vw;
}
}
|