Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Auto Save

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <header>
        <span class="titulo-logo"><span class="logo-destaque">Game</span>Review</span>
    </header>
    <main>
        <section>
            <img src="https://www.devmedia.com.br/arquivos/cursos/css_pseudos/aula4/img/banner.png" alt="Imagem de capa">
        </section>
        <section class="quem-somos limita-area">
            <h2>Quem somos</h2>

            <p>A Game Store é um site especilizado em análise de jogos das mais diversas plataformas.</p>
            <p>As nossas reviews são feitas por jogadores experientes e são compostas por uma analise profunda de acada elemento de gameplay.</p>
            <p>A GameReview faz review de verdade!</p>
        </section>
        <section class="limita-area">
            <h2>Nossos critérios</h2>

            <p>Analisamos os jogos inicialmente pela sua Gameplay, pois é isso que o torna diferente de outras mídias.</p>
            <p>Outro ponto muito importante, quando aplicável, é a análise da história do jogo.</p>
            <p>A parte final fica por conta dos gráficos e de questões técnicas como bugs.</p>
            
            <span class="mais-informacoes">Compartilhamos mais detalhes sobre nossos critérios nas nossas redes sociais.</span>
        </section> 
        <section class="limita-area">
            <h2>Os jogos mais bem avaliados da GameReview</h2>

            <p>Confira abaixo os 5 jogos mais bem avaliados da GameReview:</p>

            <div class="jogos-avaliados">
                <figure>
                    <span>1º</span>
                    <img src="https://www.devmedia.com.br/arquivos/cursos/css_pseudos/aula4/img/zelda.jpg" alt="The Legend of Zelda: Skyward Sword - 98">
                    <figcaption>The Legend of Zelda: Skyward Sword - 98</figcaption>
                </figure>

                <figure>
                    <span>2º</span>
                    <img src="https://www.devmedia.com.br/arquivos/cursos/css_pseudos/aula4/img/halo.jpg" alt="Halo: Combat Evolved - 97">
                    <figcaption>Halo: Combat Evolved - 97</figcaption>
                </figure>

                <figure>
                    <span>3º</span>
                    <img src="https://www.devmedia.com.br/arquivos/cursos/css_pseudos/aula4/img/spiderman.jpg" alt="Marvel's Spider-man - 95">
                    <figcaption>Marvel's Spider-man - 95</figcaption>
                </figure>

                <figure>
                    <span>4º</span>
                    <img src="https://www.devmedia.com.br/arquivos/cursos/css_pseudos/aula4/img/daysgone.jpg" alt="Days Gone - 94">
                    <figcaption>Days Gone - 94</figcaption>
                </figure>

                <figure>
                    <span>5º</span>
                    <img src="https://www.devmedia.com.br/arquivos/cursos/css_pseudos/aula4/img/quantumbreak.jpg" alt="Quantum Break - 94">
                    <figcaption>Quantum Break - 94</figcaption>
                </figure>
            </div>
        </section>
    </main>
    <footer>
        Copyright 2022 © - GameReview™ 
    </footer>
              
            
!

CSS

              
                * {
    margin: 0;
    padding: 0;
}

header,footer {
    width: 100%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #ed5a0e;
    color: #ffffff;
    box-sizing: border-box;
}

.titulo-logo {
    margin: 0 10px;
}

.logo-destaque {
    font-weight: bold;
}

body {
    font-family: sans-serif;
}

main {
    width: 100%;
}

section {
    width: 100%;
    margin: 0 auto;
}

.limita-area {
    max-width: 1024px;
}

img {
    width: 350px;
}

img:first-child {
    width: 100%;
}

h2 {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    font-size: 25px;
}

p {
    line-height: 32px;
}

p:last-child {
    display: inline;
    background: #f88143;
    padding: 10px 5px;
}

.mais-informacoes {
    display: block;
    margin: 25px 0;
    font-weight: bold;
    padding-left: 10px;
    border-left: 2px solid #ed5a0e;
}

.jogos-avaliados {
    width: 100%;
    display: flex;
    margin: 25px 0px;
    overflow-x: scroll;
}

figure {
    display: flex;
    flex-direction: column;
    margin: 5px 10px;
}

figcaption, figure span {
    margin: 12px 0;
    padding: 12px 5px;
    text-align: center;
    background: #ed5a0e;
}


              
            
!

JS

              
                
              
            
!
999px

Console