2021-05-09 18:36:55 +02:00
|
|
|
.AppCard {
|
|
|
|
width: 100%;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.AppCardIcon {
|
2021-06-08 12:51:50 +02:00
|
|
|
width: 35px;
|
|
|
|
height: 35px;
|
2021-05-13 17:21:52 +02:00
|
|
|
margin-right: 0.5em;
|
2021-05-09 18:36:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.AppCardDetails {
|
|
|
|
text-transform: uppercase;
|
|
|
|
}
|
|
|
|
|
|
|
|
.AppCardDetails h5 {
|
|
|
|
font-size: 1em;
|
|
|
|
font-weight: 500;
|
|
|
|
color: var(--color-primary);
|
2021-05-13 17:21:52 +02:00
|
|
|
margin-bottom: -4px;
|
2021-05-09 18:36:55 +02:00
|
|
|
}
|
|
|
|
|
2021-05-12 18:31:02 +02:00
|
|
|
.AppCardDetails span {
|
2021-05-09 18:36:55 +02:00
|
|
|
color: var(--color-accent);
|
|
|
|
font-weight: 400;
|
|
|
|
font-size: 0.8em;
|
|
|
|
opacity: 1;
|
2021-06-09 12:45:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@media (min-width: 500px) {
|
|
|
|
.AppCard {
|
|
|
|
padding: 2px;
|
|
|
|
border-radius: 4px;
|
|
|
|
transition: all 0.10s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.AppCard:hover {
|
|
|
|
background-color: rgba(0,0,0,0.2);
|
|
|
|
}
|
2021-06-23 14:15:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.CustomIcon {
|
|
|
|
width: 90%;
|
|
|
|
height: 90%;
|
|
|
|
margin-top: 2px;
|
|
|
|
margin-left: 2px;
|
|
|
|
object-fit: contain;
|
2021-05-09 18:36:55 +02:00
|
|
|
}
|