nimblog/static/css/base.css

35 lines
613 B
CSS
Raw Permalink Normal View History

2022-04-11 12:36:29 +00:00
div, body {
2022-04-11 09:10:32 +00:00
box-sizing: border-box;
}
body, html, div, p, h1, h2, h3, h4, h5 {
margin: 0;
padding: 0;
font-family: sans-serif;
}
:root {
--site-width: 960px;
2022-04-11 12:36:29 +00:00
--site-font-size: 13pt;
2022-04-11 09:10:32 +00:00
2022-04-11 12:36:29 +00:00
--bgcolor-1: rgb(195,180,180);
--bgcolor-2: rgb(225,220,220);
--bgcolor-3: rgb(250,250,250);
--fgcolor-1: rgb(0,0,0);
--fgcolor-2: rgb(245,245,245);
--highlight-1: rgb(195,55,55);
--highlight-2: rgb(175,25,5);
--font-margin: 12px;
2022-04-11 09:10:32 +00:00
--header-height: 50px;
2022-04-11 12:36:29 +00:00
--header-half-height: calc(var(--header-height) / 2);
2022-04-11 09:10:32 +00:00
--shadow-size: 8px;
--shadow-color: rgba(0,0,0,0.35);
2022-04-11 12:36:29 +00:00
--border-size: 2px;
2022-04-11 09:10:32 +00:00
}