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

92 lines
1.7 KiB
CSS
Raw Normal View History

2023-04-13 20:24:17 +00:00
@import "/fonts/faktos.css";
@import "/fonts/dosis/dosis.css";
2023-05-08 19:20:17 +00:00
@page {
size: 5.5in 8.5in;
}
2023-05-01 16:41:39 +00:00
@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");
}
2023-04-13 20:24:17 +00:00
2022-03-01 17:42:33 +00:00
:root {
2023-05-01 16:41:39 +00:00
--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 */
2023-04-13 20:24:17 +00:00
--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;
2023-05-01 16:41:39 +00:00
--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);
2023-04-13 20:24:17 +00:00
2023-05-01 16:41:39 +00:00
--main-width: 60em;
2022-03-01 17:42:33 +00:00
}
2022-03-20 18:42:59 +00:00
input.short {
2023-04-13 20:24:17 +00:00
width: 5em !important;
2022-03-20 18:42:59 +00:00
}
2022-03-20 21:48:45 +00:00
2023-05-01 16:41:39 +00:00
body {
position: relative;
width: 100%;
height: 100%;
background-color: var(--white);
color: #333;
margin: 0;
padding: 8px;
box-sizing: border-box;
}
2023-04-13 20:24:17 +00:00
2023-05-01 16:41:39 +00:00
a {
color: rgb(0, 100, 200);
text-decoration: none;
}
2023-04-13 20:24:17 +00:00
2023-05-01 16:41:39 +00:00
a:hover {
text-decoration: underline;
}
2023-04-13 20:24:17 +00:00
2023-05-01 16:41:39 +00:00
a:visited {
color: rgb(0, 80, 160);
}
2023-04-13 20:24:17 +00:00
2023-05-01 16:41:39 +00:00
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);
}
2023-05-08 19:20:17 +00:00
@media only print {
i {
font-family: var(--font-icon);
font-size: 16pt;
}
}