From 002c45d5c67269c13733e13e17fa64fe6e5f33f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sibelly=20Vit=C3=B3ria?= <133239677+sibellyvih@users.noreply.github.com> Date: Sun, 15 Sep 2024 09:15:04 -0300 Subject: [PATCH] 15/09 --- criadora.css | 108 ++++++++++++++++++++++++++++----------------------- index.html | 80 ++++++++++++++++++++------------------ style.css | 85 +++++++++++++++++++++++----------------- workshop.css | 51 +++++++++++++++--------- 4 files changed, 184 insertions(+), 140 deletions(-) diff --git a/criadora.css b/criadora.css index a6e2f0f..73d4bec 100644 --- a/criadora.css +++ b/criadora.css @@ -1,85 +1,97 @@ -body { - font-family: 'Arial', sans-serif; - margin: 0; - padding: 0; - color: black; - background: white; +@import url('https://fonts.googleapis.com/css2?family=Chakra+Petch:wght@400;700&display=swap'); + +:root { +--cor-de-fundo-titulo-principal: #F4D03F; +--background-image: linear-gradient(132deg, #F4D03F 0%, #16A085 100%); +--verde-claro: rgb(0, 255, 0); +--branco: white; +--preto: black; +--botao-ativo: rgb(0, 88, 0); +--botao-inativo:rgb(0, 51, 0); +--texto-fundo: rgb(0, 28, 0); +} + +html, body { +font-family: 'Arial', sans-serif; +margin: 0; +padding: 0; +height: 100%; +width: 100%; +color: var(--branco); +background: var(--preto); } header { - color: black; - background: white; - padding: 10px 0px; +color: black; +background: white; +padding: 10px 0px; } .caixa { - position: relative; - margin: 0 auto; - flex-wrap: wrap; +position: relative; +margin: 0 auto; +flex-wrap: wrap; } .caixa h1 { - font-size: 25px; - color: rgb(0, 69, 0); - padding-left: 85px; +font-size: 25px; +color: rgb(0, 69, 0); +padding-left: 85px; +padding-bottom: 29px; } .caixa ul { - padding-right: 85px; +padding-right: 85px; } nav { - position: absolute; - top: 0px; - right: 0; +position: absolute; +top: 20px; +right: 0; } nav li { - display: inline; - margin: 0 0 0 15px; +display: inline; +margin: 0 0 0 15px; } nav a { - color: black; - font-weight: bold; - font-size: 20px; - text-decoration: none; +color: black; +font-weight: bold; +font-size: 20px; +text-decoration: none; } nav a:hover { - color: rgb(138, 59, 125); - text-decoration: underline; +color: rgb(138, 59, 125); +text-decoration: underline; } .titulo-principal { - background-color: #F4D03F; - background-image: linear-gradient(132deg, #F4D03F 0%, #16A085 100%); - color: white; - padding: 20px; - font-size: 16px; - flex-wrap: wrap; -} - -.titulo-principal h1{ - text-align: center; - font-size: 50px; - opacity: 0; /* Inicialmente invisível */ - transform: translateY(-50px); /* Posição inicial acima */ - animation: titleEntrance 1s forwards; /* Animação de entrada */ +font-size: 23px; +color: white; +background-color: var(--cor-de-fundo-titulo-principal); +background-image: var(--background-image); +flex-wrap: wrap; +text-align: center; +font-family: "Chakra Petch", sans-serif; +font-weight: 400; +font-style: normal; +padding: 5px; } h1 { - opacity: 0; /* Inicialmente invisível */ - transform: translateY(-50px); /* Posição inicial acima */ - animation: titleEntrance 1s forwards; /* Animação de entrada */ +opacity: 0; /* Inicialmente invisível */ +transform: translateY(-50px); /* Posição inicial acima */ +animation: titleEntrance 1s forwards; /* Animação de entrada */ } /* Animação de entrada */ @keyframes titleEntrance { - to { - opacity: 1; /* Torna o título visível */ - transform: translateY(0); /* Retorna à posição original */ - } +to { + opacity: 1; /* Torna o título visível */ + transform: translateY(0); /* Retorna à posição original */ +} } p { diff --git a/index.html b/index.html index d5f68bc..937ec72 100644 --- a/index.html +++ b/index.html @@ -198,49 +198,53 @@