mirror of
https://github.com/fooflington/wordsearch.git
synced 2025-01-22 09:19:55 +00:00
47 lines
565 B
CSS
Executable File
47 lines
565 B
CSS
Executable File
body {
|
|
font-family: 'Roboto', 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: 'Fira Mono', monospace;
|
|
font-size: 14pt;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
}
|