From 290f787188a44add70a9c947f5db92d966d59237 Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 15 Jul 2024 10:46:30 -0300 Subject: [PATCH] Adicionar input do destino da viagem e Melhorar input de data --- index.html | 10 ++++------ script.js | 33 +++++++-------------------------- style.css | 4 ++++ 3 files changed, 15 insertions(+), 32 deletions(-) diff --git a/index.html b/index.html index d05ae80..e7cc6c9 100644 --- a/index.html +++ b/index.html @@ -34,7 +34,7 @@ style="stroke:#A1A1AA;stroke:color(display-p3 0.6314 0.6314 0.6667);stroke-opacity:1;" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round" /> - Florianópolis, SC +
@@ -51,7 +51,7 @@ style="stroke:#A1A1AA;stroke:color(display-p3 0.6314 0.6314 0.6667);stroke-opacity:1;" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round" /> - +
@@ -62,9 +62,7 @@ style="stroke:#A1A1AA;stroke:color(display-p3 0.6314 0.6314 0.6667);stroke-opacity:1;" stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round" /> - +
@@ -76,7 +74,7 @@ stroke-width="1.25" stroke-linecap="round" stroke-linejoin="round" />
diff --git a/script.js b/script.js index 895d483..4f0973b 100644 --- a/script.js +++ b/script.js @@ -15,8 +15,8 @@ const formatador = (data) => { // Object const atividade = { - nome: "Almoço", - data: new Date("2024-07-23 10:00"), + nome: "Almoço em restaurante", + data: new Date("2024-07-20 13:00"), finalizada: false } @@ -27,13 +27,13 @@ const atividade = { let atividades = [ atividade, { - nome: "Academia", - data: new Date("2024-07-24 12:00"), + nome: "Visitar um local histórico", + data: new Date("2024-07-21 09:00"), finalizada: false }, { - nome: "Jogar League of Legends", - data: new Date("2024-07-29 13:00"), + nome: "Conhecer shoppings locais", + data: new Date("2024-07-22 13:00"), finalizada: false } ] @@ -66,7 +66,7 @@ const criarItemDeAtividade = (atividade) => { ${atividade.nome} - + ` } @@ -115,25 +115,6 @@ const salvarAtividade = (event) => { atualizarListaDeAtividades() } -const criarDiasSelecao = () => { - const dias = [ - "2024-02-28", - "2024-03-01", - "2024-03-02" - ] - - let diasSelecao = '' - - for(let dia of dias) { - const formatar = formatador(dia) - const diaFormatado = `${formatar.dia.numerico} de ${formatar.mes}` - diasSelecao += `` - } - - document.querySelector('select[name="dia"]').innerHTML = diasSelecao -} -criarDiasSelecao() - const criarHorasSelecao = () => { let horasDisponiveis = '' diff --git a/style.css b/style.css index 07857d7..d20a53c 100644 --- a/style.css +++ b/style.css @@ -140,6 +140,10 @@ section .card-bg > div { gap: 12px; } +.input-destino { + font-size: 16px; +} + @media (width > 1024px) { #app { display: flex;