mirror of
https://github.com/lucide-icons/lucide.git
synced 2025-12-16 16:07:41 +01:00
* Ignore linting for examples in docs * Formatting JSX single attribute per line * Separte `format` and `lint:format` in package.json * Bump prettier version * Run format
104 lines
1.6 KiB
SCSS
104 lines
1.6 KiB
SCSS
@font-face {
|
|
font-family: Inter;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: swap;
|
|
src:
|
|
url('https://rsms.me/inter/font-files/Inter-Regular.woff2?v=3.9') format('woff2'),
|
|
url('https://rsms.me/inter/font-files/Inter-Regular.woff?v=3.9') format('woff');
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Inter;
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
font-display: swap;
|
|
src:
|
|
url('https://rsms.me/inter/font-files/Inter-Medium.woff2?v=3.9') format('woff2'),
|
|
url('https://rsms.me/inter/font-files/Inter-Medium.woff?v=3.9') format('woff');
|
|
}
|
|
|
|
:root {
|
|
--color-blue: #18a0fb;
|
|
--color-black: #333;
|
|
}
|
|
|
|
body {
|
|
font-family: Inter, sans-serif;
|
|
font-size: 11px;
|
|
margin: 0;
|
|
}
|
|
|
|
.search-input {
|
|
position: sticky;
|
|
top: 0;
|
|
border-bottom: 1px solid #e5e5e5;
|
|
backface-visibility: hidden;
|
|
}
|
|
|
|
main {
|
|
padding-bottom: 8px;
|
|
}
|
|
|
|
.icon-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(6, 1fr);
|
|
grid-gap: 8px;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 8px;
|
|
padding: 8px;
|
|
font-size: 12px;
|
|
color: rgba(0, 0, 0, 0.5);
|
|
|
|
.footer-link {
|
|
color: inherit;
|
|
}
|
|
}
|
|
|
|
.floating {
|
|
position: absolute;
|
|
bottom: -10px;
|
|
left: 0;
|
|
padding: 10px;
|
|
background: blue;
|
|
}
|
|
|
|
.info-page {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
padding: 24px;
|
|
}
|
|
|
|
.lucide-logo {
|
|
width: 160px;
|
|
}
|
|
|
|
.version {
|
|
margin-top: 8px;
|
|
padding: 8px;
|
|
font-weight: bold;
|
|
font-size: 18px;
|
|
color: rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.link-list {
|
|
width: 160px;
|
|
margin: 0 auto;
|
|
padding-top: 24px;
|
|
}
|
|
|
|
.info-link {
|
|
color: var(--color-blue);
|
|
display: block;
|
|
padding: 2px 0;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
}
|
|
}
|