ptitlutins/app/assets/css/main.css
2025-09-28 04:25:01 +02:00

49 lines
1 KiB
CSS

@import "./global.css";
@import "./reset.css";
@import "./variables.css";
@import url("https://fonts.ppsfleet.navy/ibm_plex/Web/css/");
body {
/* font-family: "Readex Pro", sans-serif; */
font-family: "Poppins", sans-serif;
text-rendering: optimizeLegibility;
/* background-color: var(--app-background); */
}
#app {
height: 100vh;
}
#background {
position: fixed;
top: 0;
bottom: 0;
left: 0;
right: 0;
background-image:
linear-gradient(to right, rgb(209, 213, 219) 1px, transparent 1px),
linear-gradient(rgb(209, 213, 219) 1px, transparent 1px);
background-size: "32px 32px";
background-size: 32px 32px;
mask-image: radial-gradient(
80% 80% at 0% 0%,
rgb(0, 0, 0) 50%,
transparent 90%
);
background-color: #f9fafb;
z-index: -1;
}
h1,
h2,
h3 {
font-family: "Caveat", cursive;
color: var(--primary-color);
/* font-family: "Lora", Georgia, "Times New Roman", Times, serif;
letter-spacing: 0px; */
}
.main-title {
font-weight: 500;
font-size: 64px;
text-shadow: 0px 0px 8px white;
}