ModelHandle/website/o3dv/css/core.css
2021-09-01 06:45:28 +02:00

60 lines
648 B
CSS

@font-face
{
font-family: Quicksand;
src: url('Quicksand/Quicksand-Regular.ttf');
}
html, body
{
color: var(--ov_foreground_color);
background: var(--ov_background_color);
font-size: 16px;
font-family: Quicksand, Helvetica, sans-serif;
width: 100%;
height: 100%;
margin: 0px;
padding: 0px;
overflow: hidden;
}
a
{
color: var(--ov_button_color);
text-decoration: none;
}
img
{
display: block;
}
@media (hover)
{
a:hover
{
text-decoration: underline;
}
}
@media only screen and (max-width: 700px)
{
.only_full_width
{
display: none;
}
}
@media only screen and (max-height: 700px)
{
.only_full_height
{
display: none;
}
}