33 lines
519 B
CSS
33 lines
519 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;
|
|
}
|
|
|
|
.bar {
|
|
fill: rgb(20, 176, 160);
|
|
}
|
|
|
|
.bar:hover {
|
|
fill: rgb(71, 219, 204);
|
|
}
|
|
|
|
.tooltip {
|
|
background-color: rgb(10, 112, 102);
|
|
color: white;
|
|
text-align: center;
|
|
padding: 5px 10px;
|
|
margin: 0 20px;
|
|
position: absolute;
|
|
z-index: 1;
|
|
}
|
|
|
|
footer {
|
|
position: relative;
|
|
text-align: center;
|
|
}
|