fork refine

This commit is contained in:
Stefan Pejcic
2024-02-05 10:23:04 +01:00
parent 3fffde9a8f
commit 8496a83edb
3634 changed files with 715528 additions and 2 deletions

View File

@@ -0,0 +1,30 @@
.card {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 24px;
height: 100%;
border-radius: 16px;
border: 1px solid var(--ifm-color-emphasis-200);
transition: all 0.2s;
text-align: center;
height: 160px;
background: var(--tutorial-card-bg);
}
.card:hover {
background: var(--tutorial-card-bg-hover);
box-shadow: 4px 8px 16px rgba(42, 42, 66, 0.25);
}
.link {
text-decoration: none !important;
}
.card span {
margin-top: 8px;
color: var(--ifm-font-color-base);
font-weight: 700;
font-family: "Montserrat";
}