-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
45 lines (45 loc) · 1.61 KB
/
db.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"bg": "https://images.unsplash.com/photo-1523800503107-5bc3ba2a6f81?ixlib=rb-1.2.1&ixid=MXwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHw%3D&auto=format&fit=crop&w=1400&q=80",
"title": "Quiz CSS da Alura",
"description": "Teste os seus conhecimentos sobre CSS e vamos ver quantos layouts você vai deixar de quebrar",
"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,
"alternatives": [
".elemento",
"*elemento",
"#elemento",
"%elemento"
]
},
{
"image": "https://media.giphy.com/media/13FrpeVH09Zrb2/giphy.gif",
"title": "Como fazer um background gradiente com css?",
"description": "Faz tempo em haha",
"answer": 0,
"alternatives": [
"background: linear-gradient(#e66465, #9198e5);",
"background: gradient(#e66465, #9198e5);"
]
}
],
"external": [
"https://1sec-quiz.victoroda.vercel.app/",
"https://pato-quiz-nextjs.theedouglasam.vercel.app/",
"https://vitor-quiz-git-main.vitorbarbosa.vercel.app/"
],
"theme": {
"colors": {
"primary": "#ff5722",
"secondary": "#ff3d00",
"mainBg": "#000",
"contrastText": "#FFFFFF",
"wrong": "#c51827",
"success": "#4CAF50"
},
"borderRadius": "4px"
}
}