mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
33 lines
492 B
Plaintext
33 lines
492 B
Plaintext
@import "../../../../src/reset";
|
|
@import "../../../../src/utilities";
|
|
@import "prism";
|
|
@import "markdown";
|
|
|
|
*,
|
|
*::before,
|
|
*::after {
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
}
|
|
|
|
a {
|
|
color: inherit;
|
|
text-decoration: none;
|
|
|
|
&:hover {
|
|
.text-underline;
|
|
}
|
|
}
|
|
|
|
.define-text-color('primary';
|
|
default #3498DB,
|
|
'light' lighten(#3498DB, 25%),
|
|
'dark' #2980B9
|
|
;);
|
|
|
|
.define-bg-color('primary';
|
|
default #3498db,
|
|
'light' #a0cfee,
|
|
'dark' #2980b9
|
|
;);
|