63 lines
797 B
CSS
63 lines
797 B
CSS
@CHARSET "UTF-8";
|
|
|
|
body{
|
|
background: white;
|
|
font-family: sans-serif;
|
|
font-style: normal;
|
|
font-size:x-small;
|
|
font: monospace;
|
|
}
|
|
|
|
#sudoku{
|
|
margin-left: 5%;
|
|
}
|
|
#interface{
|
|
clear: both;
|
|
}
|
|
br{
|
|
clear:both;
|
|
}
|
|
|
|
div.vspace{
|
|
min-height: 10px;
|
|
clear: both;
|
|
}
|
|
|
|
div.pagbreak{
|
|
page-break-after: always;
|
|
}
|
|
|
|
#sudo_table{
|
|
page-break-inside: avoid;
|
|
}
|
|
table.par{
|
|
background-color: #AAAAAA;
|
|
color: black;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
margin-left: -5px;
|
|
margin-top: -7px;
|
|
}
|
|
|
|
table{
|
|
float:left;
|
|
page-break-after:auto;
|
|
}
|
|
|
|
table.impar{
|
|
background-color:#BBBBBB;
|
|
color:black;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
margin-left: -5px;
|
|
margin-top: -5px;
|
|
}
|
|
|
|
td.block{
|
|
min-width: 30px;
|
|
font-size: 2em;
|
|
font-weight: bolder;
|
|
height: 30px;
|
|
border: solid;
|
|
border-width: thin;
|
|
}
|