Tweaking stylesheets

main
Mike Lynch 2024-12-01 17:11:25 +11:00
parent c89ff1e839
commit d4576cb4a2
2 changed files with 5 additions and 3 deletions

View File

@ -11,6 +11,8 @@ function scramble(words) {
return helpers.array.shuffle(w); return helpers.array.shuffle(w);
} }
function make_fragments(verbs, nouns) { function make_fragments(verbs, nouns) {
const fragments = []; const fragments = [];
while( verbs.length > 0 && nouns.length > 0 ) { while( verbs.length > 0 && nouns.length > 0 ) {

View File

@ -17,7 +17,7 @@
padding: 2em; padding: 2em;
position: absolute; position: absolute;
top: 0; top: 0;
left: 0; left: 120px;
height: 100px; height: 100px;
width: 100%; width: 100%;
@ -26,8 +26,8 @@
#frame { #frame {
position: absolute; position: absolute;
top: 80px; top: 120px;
left: 0; left: 120px;
width: 75%; width: 75%;
padding: 2em; padding: 2em;
} }