nvim/templates/template.css

16 lines
153 B
CSS
Raw Normal View History

2020-04-25 15:11:44 +00:00
html,
body {
padding: 0;
margin: 0;
}
body {
font-size: 100%;
box-sizing: border-box;
background-color: pink;
}
* {
box-sizing: inherit;
}