Compare commits

...

3 commits
v1.2.0 ... main

Author SHA1 Message Date
6810cc315c Added link to demo 2023-07-03 11:53:14 +02:00
gpkvt
c60f596816 fixed help position 2023-06-08 07:27:32 +02:00
gpkvt
b343af8dfe improved display on small screens 2023-06-08 00:54:26 +02:00
2 changed files with 33 additions and 1 deletions

View file

@ -2,6 +2,10 @@
Simple choice game. Simple choice game.
## Demo
https://ab.21x9.org
## Installation ## Installation
0. Install `python3` (and `pip` if needed) 0. Install `python3` (and `pip` if needed)

View file

@ -245,6 +245,33 @@ input[type="radio"] {
} }
@media only screen and (max-width:640px) { @media only screen and (max-width:640px) {
#header {
padding-top: 15px;
padding-bottom: 15px;
}
a:hover #help {
top: 5px;
width: 100%;
padding: 5px;
}
.a {
padding: 15px;
font-size: small;
text-indent: 0;
}
.b {
padding: 15px;
font-size: small;
text-indent: 0;
}
.o {
padding: 15px;
}
#content { #content {
min-width: 95%; min-width: 95%;
transform: none; transform: none;
@ -256,7 +283,8 @@ input[type="radio"] {
#next { #next {
min-width: 100%; min-width: 100%;
margin-top: 20px; margin-top: 10px;
height: 50px;
} }
#questions { #questions {