wordsearch/war/base.css
2017-10-15 16:59:05 +01:00

47 lines
545 B
CSS
Executable File

body {
font-family: sans-serif;
}
.tooltip {
border-bottom: 1px dotted #000;
text-decoration: none;
}
table, th, td {
border: 1px solid black;
border-collapse: collapse;
padding: 2px 4px;
}
table#grid td {
font-family: monospace;
font-size: 22px;
}
#wrapper {
width: 80%;
margin: 0 auto 60px auto;
}
#wordsearch {
float: left;
}
#words {
float: right;
width: 200px;
}
#footer {
position:absolute;
bottom:0;
width:100%;
height:60px; /* Height of the footer */
}
@media only print {
.noprint {
display: none;
}
}