Files
docs/src/components/ActionCard/styles.module.css
T

54 lines
783 B
CSS

.root {
padding: 2rem;
border-radius: 16px;
background: var(--theme-attention-card-bg-color);
}
.title {
margin-top: 1rem;
margin-bottom: 1rem;
font-size: var(--font-size-big-1);
font-weight: var(--ifm-font-weight-bold);
}
.description {
font-size: var(--font-size-large);
}
@media screen and (min-width: 880px) {
.root {
padding: 2rem;
}
.title {
font-size: 1.2rem;
}
}
.content {
display: flex;
flex: 1;
}
.skinPrimary {
background: #3c6018;
}
[data-theme='dark'] .skinPrimary {
background: #335214;
}
.skinPrimary .title,
.skinPrimary .description {
color: var(--theme-attention-card-text-color);
}
.icon {
display: flex;
align-items: center;
justify-content: center;
height: 76px;
width: 76px;
border-radius: 50%;
}