Core/src/styles/_common.less

39 lines
428 B
Text
Raw Normal View History

2024-06-08 23:52:26 +02:00
html, body
{
margin: 0;
padding: 0;
}
html, body, input, button, textarea
{
font-size: 1em;
2024-09-26 10:48:15 +02:00
font-family: var(--sans-serif-fonts);
2024-06-08 23:52:26 +02:00
font-weight: 500;
}
pre, code
{
2024-09-26 10:48:15 +02:00
font-family: var(--monospace-fonts);
2024-06-08 23:52:26 +02:00
}
body
{
background: var(--background);
color: var(--foreground);
}
p
{
margin: 0.75em auto;
line-height: 1.6em;
}
.virtual
{
position: absolute;
2024-09-25 18:59:07 +02:00
display: block;
height: 0;
opacity: 0;
2024-09-25 18:59:07 +02:00
pointer-events: none;
}