freeCodeCamp/curriculum/challenges/portuguese/15-javascript-algorithms-an.../learn-basic-javascript-by-b.../62a240c67f3dbb1a1e6d95ee.md

3.1 KiB

id title challengeType dashedName
62a240c67f3dbb1a1e6d95ee Passo 10 0 step-10

--description--

Dê ao #game uma largura máxima de 500px e uma altura máxima de 400px. Defina a background-color como lightgray e a color como white. Finalmente, use margens para centralizá-lo e dar-lhe 10px de preenchimento em todos os quatro lados.

--hints--

Você deve ter um seletor #game.

const game = new __helpers.CSSHelp(document).getStyle('#game');
assert.exists(game);

O seletor #game deve ter um max-width com o valor de 500px.

const maxWidth = new __helpers.CSSHelp(document).getStyle('#game')?.getPropertyValue('max-width');
assert.equal(maxWidth, '500px');

O seletor #game deve ter um max-height com o valor de 400px.

const maxHeight = new __helpers.CSSHelp(document).getStyle('#game')?.getPropertyValue('max-height');
assert.equal(maxHeight, '400px');

O elemento #game deve ter a background-color com o valor de lightgray.

const background = new __helpers.CSSHelp(document).getStyle('#game')?.getPropertyValue('background-color');
assert.equal(background, 'lightgray');

O seletor #game deve ter o atributo color com o valor white.

const color = new __helpers.CSSHelp(document).getStyle('#game')?.getPropertyValue('color');
assert.equal(color, 'white');

O seletor #game deve ter uma margin definida como 0 auto.

const margin = new __helpers.CSSHelp(document).getStyle('#game')?.getPropertyValue('margin');
assert.equal(margin, '0px auto');

O seletor #game deve ter 10px de espaçamento em todos os lados.

const padding = new __helpers.CSSHelp(document).getStyle('#game')?.getPropertyValue('padding');
assert.equal(padding, '10px');

--seed--

--seed-contents--

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <link rel="stylesheet" href="./styles.css">
    <title>RPG - Dragon Repeller</title>
</head>
<body>
    <div id="game">
        <div id="stats">
            <span class="stat">XP: <strong><span id="xpText">0</span></strong></span>
            <span class="stat">Health: <strong><span id="healthText">100</span></strong></span>
            <span class="stat">Gold: <strong><span id="goldText">50</span></strong></span>
        </div>
        <div id="controls">
            <button id="button1">Go to store</button>
            <button id="button2">Go to cave</button>
            <button id="button3">Fight dragon</button>
        </div>
        <div id="monsterStats">
            <span class="stat">Monster Name: <strong><span id="monsterName"></span></strong></span>
            <span class="stat">Health: <strong><span id="monsterHealth"></span></strong></span>
        </div>
        <div id="text">
            Welcome to Dragon Repeller. You must defeat the dragon that is preventing people from leaving the town. You are in the town square. Where do you want to go? Use the buttons above.
        </div>
    </div>
</body>
</html>
body {
    background-color: darkblue;
}

#text {
    background-color: black;
    color: white;
    padding: 10px;
}

--fcc-editable-region--

--fcc-editable-region--