mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
* WIP * run prettier * drop new lines in custom matcher Drop all newlines, let prettier handle everything for us. * add cache for the selector parser * add `@apply` tests for the universal optimizer * drop comments * initial replacements * WIP * WIP * MAKE IT WORK * Rename to resolveDefaultsAtRules * Update tests + defaults identifiers * Don't add @defaults in AOT mode Co-authored-by: Robin Malfait <malfait.robin@gmail.com>
53 lines
1.0 KiB
CSS
53 lines
1.0 KiB
CSS
@font-face {
|
|
font-family: 'Poppins';
|
|
src: url('/fonts/Poppins.woff2') format('woff2'), url('/fonts/Poppins.woff') format('woff');
|
|
}
|
|
@font-face {
|
|
font-family: 'Proxima Nova';
|
|
src: url('/fonts/ProximaNova.woff2') format('woff2'),
|
|
url('/fonts/ProximaNova.woff') format('woff');
|
|
}
|
|
@font-face {
|
|
font-family: 'Inter';
|
|
src: url('/fonts/Inter.woff2') format('woff2'), url('/fonts/Inter.woff') format('woff');
|
|
}
|
|
@font-face {
|
|
font-family: 'Gilroy';
|
|
src: url('/fonts/Gilroy.woff2') format('woff2'), url('/fonts/Gilroy.woff') format('woff');
|
|
}
|
|
@page {
|
|
margin: 1cm;
|
|
}
|
|
.font-bold {
|
|
font-weight: 700;
|
|
}
|
|
.foo,
|
|
.bar {
|
|
color: black;
|
|
font-weight: 700;
|
|
}
|
|
@media (min-width: 640px) {
|
|
.sm\:text-center {
|
|
text-align: center;
|
|
}
|
|
.sm\:font-bold {
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
@media (min-width: 768px) {
|
|
.md\:text-center {
|
|
text-align: center;
|
|
}
|
|
.md\:font-bold {
|
|
font-weight: 700;
|
|
}
|
|
}
|
|
@media (min-width: 1024px) {
|
|
.lg\:text-center {
|
|
text-align: center;
|
|
}
|
|
.lg\:font-bold {
|
|
font-weight: 700;
|
|
}
|
|
}
|