123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- h1 {
- text-align: center;
- }
-
- div {
- text-align: center;
- }
- #MainHeading {
- }
- #MainHeadingPic {
- max-width: 10%;
- }
-
- #buttondiv {
- display: inline;
- margin: auto;
- }
- #startbutton {
- scale: 120%;
- }
- #nextbutton {
- visibility: hidden;
- }
- #questiondiv{
- margin-top: 20px;
- }
- #question {
- margin: auto;
- height: 50px;
- width: 600px;
- border-style: solid;
- padding-bottom: 20px;
- }
-
- #answerdiv {
- display: flex;
- }
-
- #timerdiv {
- margin-bottom: 20px;
- padding-bottom: 20px;
- padding-top: 20px;
- }
-
- #timer {
- display: inline;
-
- }
-
- #timerpic{
- max-width: 10%;
- margin-bottom: -20px;
- }
- #answerdiv{
- display: flex;
- justify-content: center;
- align-items: center;
- flex-wrap: wrap;
- }
- .answerbox {
- width: 300px;
- height: 100px;
- border-style: solid;
- }
- #firstanswerbox {
- border-color: red;
- background-color: red;
- }
-
- #secondanswerbox {
- border-color: yellow;
- background-color: yellow;
- }
-
- #thirdanswerbox {
- border-color: blue;
- background-color: blue;
- }
|