ModelHandle/website/o3dv/css/core.css
2021-12-08 18:26:39 +01:00

75 lines
805 B
CSS

:root
{
--ov_only_on_model_display: inherit;
}
@font-face
{
font-family: Quicksand;
src: url('Quicksand/Quicksand-Regular.ttf');
}
input, select, textarea
{
outline: none;
}
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;
}
.only_on_model
{
display: var(--ov_only_on_model_display);
}
@media (hover)
{
a:hover
{
text-decoration: underline;
}
}
@media only screen and (max-width: 800px)
{
.only_full_width
{
display: none;
}
}
@media only screen and (max-height: 800px)
{
.only_full_height
{
display: none;
}
}