1
0
Fork 0
mirror of https://github.com/pawelmalak/flame.git synced 2025-07-23 21:29:37 +02:00
flame/client/src/components/Apps/AppCard/AppCard.module.css

64 lines
913 B
CSS
Raw Normal View History

2021-05-09 18:36:55 +02:00
.AppCard {
margin-bottom: 20px;
}
.AppCard h3 {
color: var(--color-accent);
margin-bottom: 10px;
font-size: 16px;
font-weight: 400;
text-transform: uppercase;
}
.AppIcon {
width: 35px;
height: 35px;
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);
margin-bottom: -10px;
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;
}
.Apps {
display: flex;
flex-direction: column;
padding: 2px;
border-radius: 4px;
transition: all 0.1s;
}
.Apps a {
line-height: 2;
transition: all 0.25s;
display: flex;
width: 100%;
align-items: center;
}
.Apps a:hover {
background-color: rgba(0, 0, 0, 0.2);
}
.CustomIcon {
width: 90%;
height: 90%;
margin-top: 2px;
margin-left: 2px;
object-fit: contain;
2021-08-06 15:15:54 +02:00
}