22 lines
347 B
CSS
22 lines
347 B
CSS
@font-face {
|
|
font-family: "quicksand";
|
|
/* license: url("https://radii.page/fonts/Quicksand-Regular.txt"); */
|
|
src: local("font") url("./font.ttf") format("tff");
|
|
}
|
|
|
|
body {
|
|
font-family: quicksand, Sans-serif;
|
|
}
|
|
|
|
.tooltip {
|
|
color: white;
|
|
position: absolute;
|
|
z-index: 1;
|
|
}
|
|
|
|
header,
|
|
footer {
|
|
position: relative;
|
|
text-align: center;
|
|
}
|