elstat/priv/frontend/src/index.css

27 lines
394 B
CSS
Raw Normal View History

2018-06-12 21:56:50 +00:00
html, body {
box-sizing: border-box;
}
2018-07-14 02:06:38 +00:00
*, *:before, *:after {
box-sizing: inherit;
}
2018-06-12 21:56:50 +00:00
body {
margin: 0;
2018-07-14 01:50:00 +00:00
padding: 2rem;
2018-06-12 21:56:50 +00:00
font: 16px/1.5 system-ui, sans-serif;
}
2018-07-14 01:50:00 +00:00
h1:first-child {
margin-top: 0;
}
2018-07-14 02:06:38 +00:00
.error {
2018-07-18 22:19:56 +00:00
--border: hsla(0, 100%, 80%, 1);
--bg: hsla(0, 100%, 95%, 1);
border: solid 1px var(--border);
background-color: var(--bg);
2018-07-14 02:06:38 +00:00
padding: 1rem;
2018-07-18 22:19:56 +00:00
border-radius: 0.25rem;
2018-06-12 21:56:50 +00:00
}