mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
55 lines
1.1 KiB
Plaintext
55 lines
1.1 KiB
Plaintext
// For local dev
|
|
@import (less, optional) "../node_modules/normalize.css/normalize.css";
|
|
@import (less, optional) "../node_modules/suitcss-base/lib/base.css";
|
|
|
|
// For real projects
|
|
@import (less, optional) "../../../node_modules/normalize.css/normalize.css";
|
|
@import (less, optional) "../../../node_modules/suitcss-base/lib/base.css";
|
|
|
|
@-moz-viewport { width: device-width; }
|
|
@-ms-viewport { width: device-width; }
|
|
@-o-viewport { width: device-width; }
|
|
@-webkit-viewport { width: device-width; }
|
|
@viewport { width: device-width; }
|
|
|
|
html {
|
|
font-size: 12px;
|
|
|
|
// Changes the default tap highlight to be completely transparent in iOS.
|
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
|
|
|
// -webkit-font-smoothing: antialiased;
|
|
|
|
@media (min-width: 420px) {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
|
|
body {
|
|
font-family: @font-family-base;
|
|
font-size: @font-size-base;
|
|
font-weight: @font-weight-regular;
|
|
line-height: @line-height;
|
|
color: @text-dark;
|
|
}
|
|
|
|
textarea {
|
|
resize: vertical;
|
|
}
|
|
|
|
button, [role=button] {
|
|
cursor: pointer;
|
|
}
|
|
|
|
small {
|
|
font-size: @font-size-sm;
|
|
}
|
|
|
|
pre, code {
|
|
font-family: @font-family-mono;
|
|
}
|
|
|
|
img {
|
|
vertical-align: middle;
|
|
}
|