wordsearch/war/base.css

44 lines
464 B
CSS
Raw Normal View History

2016-12-19 15:44:06 +00:00
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;
}
2016-12-19 16:03:38 +00:00
table#grid td {
font-family: monospace;
2016-12-20 06:42:23 +00:00
font-size: 22px;
2016-12-19 15:44:06 +00:00
}
#wrapper {
width: 80%;
margin: 0 auto;
}
#wordsearch {
float: left;
}
#words {
float: right;
width: 200px;
}
2016-12-20 06:42:23 +00:00
#footer {
float: bottom;
}
2016-12-19 15:44:06 +00:00
@media only print {
.noprint {
display: none;
}
}