-
Notifications
You must be signed in to change notification settings - Fork 532
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ec46f3e
commit fd5a253
Showing
1 changed file
with
38 additions
and
21 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,62 @@ | ||
{ | ||
"bg": "https://i2.wp.com/css-tricks.com/wp-content/uploads/2017/06/css-is-awesome-scaled.jpg?resize=1536%2C1208&ssl=1", | ||
"title": "Quiz CSS da Alura", | ||
"description": "Teste os seus conhecimentos sobre CSS e vamos ver quantos layouts você vai deixar de quebrar", | ||
"bg": "https://www.hitalent.co/rails/active_storage/blobs/eyJfcmFpbHMiOnsibWVzc2FnZSI6IkJBaHBBMmJDQXc9PSIsImV4cCI6bnVsbCwicHVyIjoiYmxvYl9pZCJ9fQ==--1452099b706ad7d079f7a3a4dd5d702ebeeae45f/HiTalent.png", | ||
"title": "Quiz JavaScript #AluraQuiz", | ||
"description": "Um quiz rápido sobre o mundo do JavaScript", | ||
"questions": [ | ||
{ | ||
"image": "https://media.giphy.com/media/xUOxf3yDKCuwpOlT3i/giphy.gif", | ||
"title": "Como fazer um seletor por id via CSS?", | ||
"description": "Essa é pra aquecer", | ||
"answer": 2, | ||
"image": "https://media.giphy.com/media/j5P0DQIOf4PonLi55G/giphy.gif", | ||
"title": "Qual a diferença entre = , == e === ?", | ||
"description": "Pergunta fácil em!", | ||
"answer": 1, | ||
"alternatives": [ | ||
".elemento", | ||
"*elemento", | ||
"#elemento", | ||
"%elemento" | ||
"São a mesma coisa", | ||
"O = significa atribuição de valor. Já == verifica a igualdade do valor, enquanto === verifica valor e tipo de variável." | ||
] | ||
}, | ||
{ | ||
"image": "https://media.giphy.com/media/13FrpeVH09Zrb2/giphy.gif", | ||
"title": "Como fazer um background gradiente com css?", | ||
"description": "Faz tempo em haha", | ||
"image": "https://media.giphy.com/media/Ie2Hs3A0uJRtK/giphy.gif", | ||
"title": "Que tipos de dados são suportados em JavaScript?", | ||
"description": "E agora? Você sabe?", | ||
"answer": 0, | ||
"alternatives": [ | ||
"background: linear-gradient(#e66465, #9198e5);", | ||
"background: gradient(#e66465, #9198e5);" | ||
"Number, String, Undefined, Null e Bool.", | ||
"Int, String, Undefined, Null e Bool." | ||
] | ||
}, | ||
{ | ||
"image": "https://media.giphy.com/media/iI4vhciiVh2b3j9sgo/giphy.gif", | ||
"title": "Qual a diferença de window e global?", | ||
"answer": 1, | ||
"alternatives": [ | ||
"São a mesma coisa", | ||
"window é o escopo global no browser, e global no node" | ||
] | ||
}, | ||
{ | ||
"image": "https://media.giphy.com/media/iI4vhciiVh2b3j9sgo/giphy.gif", | ||
"title": "Qual a forma antiga de trabalhar com AJAX na Web?", | ||
"answer": 1, | ||
"alternatives": [ | ||
"JSONHttpRequest", | ||
"XMLHttpRequest", | ||
"fetch" | ||
] | ||
} | ||
], | ||
"external": [ | ||
"https://aluraquiz-base.alura-challenges.vercel.app/", | ||
"https://aluraquiz-css.omariosouto.vercel.app/", | ||
"https://aluraquiz-javascript.omariosouto.vercel.app/", | ||
"https://aluraquiz-devsoutinho.omariosouto.vercel.app/" | ||
], | ||
"theme": { | ||
"colors": { | ||
"primary": "#0d47a1", | ||
"secondary": "#29b6f6", | ||
"mainBg": "#171B35", | ||
"primary": "#222222", | ||
"secondary": "#e8be3f", | ||
"mainBg": "#213f4e", | ||
"contrastText": "#FFFFFF", | ||
"wrong": "#FF5722", | ||
"success": "#4CAF50" | ||
}, | ||
"borderRadius": "4px" | ||
} | ||
} | ||
} |