From 9e5d77087cab7a1a1c2978389c392c2e9e84cb79 Mon Sep 17 00:00:00 2001 From: Luiz Felipe Silva Date: Thu, 13 Oct 2022 14:13:55 -0300 Subject: [PATCH 1/2] feat(home): criado o section1. --- index.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/index.html b/index.html index 5dca49a..b81e34c 100644 --- a/index.html +++ b/index.html @@ -16,5 +16,10 @@ M3 Academy + +
+ Notebook na mesa + Notebook na mesa +
\ No newline at end of file -- 2.34.1 From 158b29cf946073ca170b63416fe2ab34fc34b096 Mon Sep 17 00:00:00 2001 From: Luiz Felipe Silva Date: Thu, 13 Oct 2022 14:14:12 -0300 Subject: [PATCH 2/2] feat(home): criado estilo da section1. --- src/assets/css/style.css | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/assets/css/style.css b/src/assets/css/style.css index 6961313..0c886db 100644 --- a/src/assets/css/style.css +++ b/src/assets/css/style.css @@ -17,4 +17,23 @@ header { header a { width: 11%; +} + +/* SECTION 1 */ + +.section1 img { + width: 100%; + height: 36%; +} + +@media screen and (max-width: 425px) { + .fundo-desktop { + display: none; + } +} + +@media screen and (min-width: 426px) { + .fundo-mobile { + display: none; + } } \ No newline at end of file -- 2.34.1