shellphone.app/styles/tailwind.css

69 lines
1.4 KiB
CSS
Raw Normal View History

2022-05-14 10:22:06 +00:00
@tailwind base;
@tailwind components;
@tailwind utilities;
@font-face {
font-family: "Inter var";
font-weight: 100 900;
2022-06-27 11:14:28 +00:00
font-display: swap;
2022-05-14 10:22:06 +00:00
font-style: normal;
font-named-instance: "Regular";
src: url("/fonts/inter-roman.var.woff2") format("woff2");
}
@font-face {
font-family: "Inter var";
font-weight: 100 900;
2022-06-27 11:14:28 +00:00
font-display: swap;
2022-05-14 10:22:06 +00:00
font-style: italic;
font-named-instance: "Italic";
src: url("/fonts/inter-italic.var.woff2") format("woff2");
}
@font-face {
font-family: "P22 Mackinac Pro";
src: url("/fonts/P22MackinacPro-Book.woff2") format("woff2");
font-weight: 400;
font-style: normal;
2022-06-27 11:14:28 +00:00
font-display: swap;
2022-05-14 10:22:06 +00:00
}
@font-face {
font-family: "P22 Mackinac Pro";
src: url("/fonts/P22MackinacPro-Bold.woff2") format("woff2");
font-weight: 700;
font-style: normal;
2022-06-27 11:14:28 +00:00
font-display: swap;
2022-05-14 10:22:06 +00:00
}
@font-face {
font-family: "P22 Mackinac Pro";
src: url("/fonts/P22MackinacPro-ExtraBold.woff2") format("woff2");
font-weight: 800;
font-style: normal;
2022-06-27 11:14:28 +00:00
font-display: swap;
2022-05-14 10:22:06 +00:00
}
@font-face {
font-family: "P22 Mackinac Pro";
src: url("/fonts/P22MackinacPro-Medium.woff2") format("woff2");
font-weight: 500;
font-style: normal;
2022-06-27 11:14:28 +00:00
font-display: swap;
2022-05-14 10:22:06 +00:00
}
.font-heading {
@apply font-mackinac tracking-tight font-bold;
word-spacing: 0.025em;
}
2022-07-08 23:34:18 +00:00
.background-primary {
@apply bg-gradient-to-br from-rebeccapurple-500 to-indigo-600;
}
.landing-hero {
height: calc(100vh - 120px);
margin-top: -120px;
@apply flex flex-col justify-center;
}