Notes2/static/css/main.css

24 lines
303 B
CSS
Raw Normal View History

2024-11-27 21:41:48 +01:00
html {
box-sizing: border-box;
2024-11-28 18:11:14 +01:00
background: #efede8;
2024-12-03 06:53:31 +01:00
font-family: "Liberation Mono", monospace;
font-size: 14px;
margin: 0px;
padding: 0px;
}
body {
margin: 0px;
padding: 0px;
2024-11-27 21:41:48 +01:00
}
*,
*:before,
*:after {
box-sizing: inherit;
}
*:focus {
outline: none;
}
[onClick] {
cursor: pointer;
}