generated from Arquisoft/wiq_0
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #74 from Arquisoft/fix-styles-game
Fix styles game
- Loading branch information
Showing
14 changed files
with
266 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
.question-container { | ||
text-align: center; | ||
} | ||
|
||
.question-title { | ||
font-size: 24px; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.answer-grid { | ||
margin-top: 3em; | ||
display: grid; | ||
grid-template-columns: repeat(2, 1fr); | ||
gap: 1.5em; | ||
} | ||
|
||
.answer-grid button { | ||
width: 100%; | ||
height: 50px; | ||
border-radius: 10px; /* Rounded borders */ | ||
font-size: 18px; /* Big text */ | ||
font-weight: bold; /* Bold font */ | ||
transition: transform 0.2s; /* Transition for scale animation */ | ||
cursor:pointer; | ||
} | ||
|
||
.answer-grid button:active { | ||
transform: scale(0.95); /* Scale down on active state */ | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,30 @@ | ||
table { | ||
width: 100%; | ||
border-collapse: collapse; | ||
border-radius: 50%; | ||
margin-top: 5rem; | ||
} | ||
|
||
table caption { | ||
background-color: black; | ||
background-color: #1E1E1E; | ||
color: white; | ||
padding: 10px; | ||
padding: 20px; | ||
text-align: center; | ||
} | ||
|
||
table th, table td { | ||
border: 1px solid black; | ||
border: 1px solid #1E1E1E; | ||
width: 33.33%; | ||
text-align: center; | ||
padding: 10px; | ||
} | ||
|
||
table th { | ||
color: blue; | ||
font-weight: bold; | ||
color: #007bff; | ||
} | ||
|
||
.selected { | ||
background-color: #D9D9D9; | ||
font-weight: bold; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.