link chips
This commit is contained in:
@@ -92,3 +92,38 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
.chips {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: center;
|
||||
flex-wrap: wrap;
|
||||
gap: 1rem;
|
||||
}
|
||||
.chip {
|
||||
display: inline-flex;
|
||||
text-decoration: none;
|
||||
gap: 0.5rem;
|
||||
align-items: center;
|
||||
color: inherit;
|
||||
padding: 6px 8px;
|
||||
border: 1px solid var(--grey);
|
||||
border-radius: 8px;
|
||||
transition-duration: 100ms;
|
||||
text-rendering: geometricPrecision;
|
||||
// font-family: var(--fonts-bold);
|
||||
// color: var(--grey);
|
||||
svg {
|
||||
color: var(--grey);
|
||||
}
|
||||
&:hover,
|
||||
&:focus {
|
||||
outline: none;
|
||||
background: var(--black1);
|
||||
border: 1px solid var(--black1);
|
||||
box-shadow: var(--shadow0);
|
||||
transform: scale(1.1);
|
||||
svg {
|
||||
color: var(--color);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -8,6 +8,7 @@
|
||||
--grey: #444;
|
||||
--accent: #61f2ea;
|
||||
--shadow0: 0 0 1rem rgba(0, 0, 0, 0.35);
|
||||
--shadow1: 0 0 8px var(--grey);
|
||||
--fonts-norm: "Quicksand", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
|
||||
Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
|
||||
--fonts-bold: "Lexend", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
|
||||
|
||||
Reference in New Issue
Block a user