aotds-docks/src/lib/style/index.css

81 lines
1.6 KiB
CSS

@import "/fonts/faktos.css";
@import "/fonts/dosis/dosis.css";
@font-face {
font-family: "Faktos";
font-style: normal;
src: url(/fonts/Faktos.ttf) format("truetype");
}
@font-face {
font-family: "Dosis";
src: url(/fonts/dosis/Dosis-VariableFont_wght.ttf) format("truetype");
}
:root {
--font: "Dosis", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
--main-font-family: "Dosis", -apple-system, BlinkMacSystemFont, "Segoe UI",
Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
--font-family: "Dosis", -apple-system, BlinkMacSystemFont, "Segoe UI";
--vertical-rythm: 1.5rem;
/* == 24px */
--font-scale-9: 0.75rem;
--font-scale-10: 1rem;
--font-scale-11: 1.25rem;
--font-scale-12: 1.5rem;
--font-scale-13: 1.75rem;
--font-scale-14: 2.3125rem;
--font-scale-15: 3.0625rem;
--oxford-blue: hsla(226, 60%, 10%, 1);
--royal-blue-dark: hsla(218, 100%, 16%, 1);
--indigo-dye: hsla(209, 95%, 24%, 1);
--cg-blue: hsla(193, 80%, 35%, 1);
--white: hsla(20, 60%, 99%, 1);
--main-width: 60em;
}
input.short {
width: 5em !important;
}
body {
position: relative;
width: 100%;
height: 100%;
background-color: var(--white);
color: #333;
margin: 0;
padding: 8px;
box-sizing: border-box;
}
a {
color: rgb(0, 100, 200);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:visited {
color: rgb(0, 80, 160);
}
h1 {
font-size: var(--font-scale-15);
}
h2 {
font-size: var(--font-scale-14);
}
h3 {
font-size: var(--font-scale-13);
}
h4 {
font-size: var(--font-scale-12);
}