From be9e6c81d1d83d118935c4583c1054dc552a70e1 Mon Sep 17 00:00:00 2001 From: Jean Carlos Inferdes <104872644+Inferdes@users.noreply.github.com> Date: Fri, 21 Jun 2024 10:48:21 -0300 Subject: [PATCH] aula 2 --- index.html | 14 ++++++ reset.css | 135 +++++++++++++++++++++++++++++++++++++++++++++++++++++ style.css | 11 +++++ 3 files changed, 160 insertions(+) create mode 100644 index.html create mode 100644 reset.css create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..0ffee59 --- /dev/null +++ b/index.html @@ -0,0 +1,14 @@ + + + + + + AluraBooks + + + + + +

Alura Books

+ + \ No newline at end of file diff --git a/reset.css b/reset.css new file mode 100644 index 0000000..49de4b2 --- /dev/null +++ b/reset.css @@ -0,0 +1,135 @@ +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +html, +body, +div, +span, +applet, +object, +iframe, +h1, +h2, +h3, +h4, +h5, +h6, +p, +blockquote, +pre, +a, +abbr, +acronym, +address, +big, +cite, +code, +del, +dfn, +em, +img, +ins, +kbd, +q, +s, +samp, +small, +strike, +strong, +sub, +sup, +tt, +var, +b, +u, +i, +center, +dl, +dt, +dd, +ol, +ul, +li, +fieldset, +form, +label, +legend, +table, +caption, +tbody, +tfoot, +thead, +tr, +th, +td, +article, +aside, +canvas, +details, +embed, +figure, +figcaption, +footer, +header, +hgroup, +menu, +nav, +output, +ruby, +section, +summary, +time, +mark, +audio, +video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} + +/* HTML5 display-role reset for older browsers */ +article, +aside, +details, +figcaption, +figure, +footer, +header, +hgroup, +menu, +nav, +section { + display: block; +} + +body { + line-height: 1; +} + +ol, +ul { + list-style: none; +} + +blockquote, +q { + quotes: none; +} + +blockquote:before, +blockquote:after, +q:before, +q:after { + content: ''; + content: none; +} + +table { + border-collapse: collapse; + border-spacing: 0; +} diff --git a/style.css b/style.css new file mode 100644 index 0000000..ebe2cf0 --- /dev/null +++ b/style.css @@ -0,0 +1,11 @@ +:root { + --cor-de-fundo: #EBECEE; +} + +body { + background-color: var(--cor-de-fundo); +} + +h1 { + background-color: white; +}