Created
February 22, 2023 15:11
-
-
Save YonatanKra/7a2a4e3bfd5e75a9ba0feae3f598f098 to your computer and use it in GitHub Desktop.
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
const QUESTIONS = [ | |
{ | |
id: '1', | |
selector: '#wife', | |
properties: ['right', 'margin'], | |
}, | |
{ | |
id: '2', | |
selector: '#tower-of-pise', | |
properties: ['font-style'], | |
}, | |
{ | |
id: '3', | |
selector: '#titanic', | |
properties: ['float'], | |
}, | |
{ | |
id: '4', | |
selector: '#moses > .sea', | |
properties: ['column-count'], | |
}, | |
]; | |
const ANSWERS = [ | |
['100%0', '100%none'], ['italic'], ['none'], ['2'] | |
]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment