]> Git — Sourcephile - julm/worksheets.git/blob - style/worksheet.css
maint: code cleaning
[julm/worksheets.git] / style / worksheet.css
1 body {
2 line-height:1.4;
3 margin:2ex auto;
4 //width:650px;
5 }
6 .worksheet {
7 white-space:preserve-spaces;
8 width:100%;
9 margin-left: 1ex;
10 margin-right: 1ex;
11 margin-bottom: 1ex;
12 margin-top: 1ex;
13 font-family: sans;
14 font-variant: small-caps;
15 display: grid;
16 gap: 0px;
17 //justify-items: center;
18 justify-self: center;
19 font-size: 14pt;
20 //background-color:grey;
21 }
22 .row {
23 display: grid;
24 grid-template-columns: repeat(1000, 1.5em);
25 }
26 .worksheet > div:nth-child(2n) {
27 margin-bottom:.5em;
28 }
29 .cell {
30 display: grid;
31 place-content: center;
32 position: relative;
33 box-shadow:0 0 0 1px #AAA;
34 background-color:white;
35 min-height:1.5em;
36 padding-left:0;
37 padding-right:0;
38 margin-left:0;
39 margin-right:0;
40 }
41 .cell-space {
42 box-shadow:0 0 0 0 red !important;
43 border-left:1px solid #AAA;
44 }