GithubHelp home page GithubHelp logo

get-coffe-layout-iandrokuntz's Introduction

Atividade - Get Coffee Layout

Agora você irá criar uma página HTML replicando o design exibido abaixo: Página inicial do site Get Coffee. Use o que você aprendeu sobre os modelos de caixa e sobre como posicionar elementos usando CSS.

Para resolver essa atividade, você vai acessar esse repositório e fazer o clone do projeto.

Faças as alterações no arquivo css para praticar!

Mockup:

Desktop

Mobile


Dicas:

Fontes:

<link href="https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
  • font-family: 'Nunito', sans-serif

Cores/Fontes:

:root{
    --larguraContainerConteudo:1140px;
    --coresTexto: #242424 
    --coresSecundaria: #FCA60F
    --fontSizePrimaria: 18px
    --fontSizeSecundaria: 36px
}

Dicas:

  • Sombra Header
header{
    box-shadow: 0px 1px 8px rgba(36, 36, 36, 0.15);
}
  • Como fazer o Link scroll down

HTML do link:

<a href="#" class="scrollDown">scroll down</a>

CSS para fazer o link:

a{

    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    text-decoration: none;
    color: #000000;
    display: block;
    text-align: center;
    max-width: 110px;
    margin: 0 auto;
    position: relative;
}
a::before{

    width: 4px;
    height: 7px;
    background: #FFFFFF;
    border-radius: 50px;
    margin: 0 auto;
    position: absolute;
    bottom: 3px;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
}
a::after{

    content: "";
    display: block;
    width: 20px;
    height: 35px;
    background: #FCA60F;
    border-radius: 50px;
    margin: 9px auto 0;
}

get-coffe-layout-iandrokuntz's People

Contributors

github-classroom[bot] avatar

Watchers

Ian Kuntz avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.