40 lines
No EOL
989 B
CSS
40 lines
No EOL
989 B
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: "Geist", sans-serif;
|
|
text-rendering: optimizeLegibility;
|
|
/* background-color: var(--app-background); */
|
|
margin-top: 1rem;
|
|
|
|
|
|
}
|
|
|
|
#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;
|
|
/* 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;
|
|
} |