elstat/priv/frontend/src/index.css

24 lines
282 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 {
background: pink;
padding: 1rem;
border-radius: 0.15rem;
2018-06-12 21:56:50 +00:00
}