From acb5fcccd603902125d5c8fcf44761fbeafaf0c4 Mon Sep 17 00:00:00 2001 From: Ratix <87277467+RatixForever@users.noreply.github.com> Date: Thu, 29 Sep 2022 11:29:25 -0300 Subject: [PATCH] Add files via upload --- Assets/css/style.css | 91 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 Assets/css/style.css diff --git a/Assets/css/style.css b/Assets/css/style.css new file mode 100644 index 0000000..d07c0a6 --- /dev/null +++ b/Assets/css/style.css @@ -0,0 +1,91 @@ +*{ + margin: 0; + padding: 0; + box-sizing: border-box; +} +html{ + scroll-behavior:smooth; +} +body{ + background-color:white; + padding-top:55px; +} +button{ + background-color: white; + border: none; + border-radius: 3px; + cursor: pointer; +} +header{ + position: fixed; + display: flex; + top: 0; + left: 0; + right: 0; + height: 55px; +} +section, footer{ + padding: 20px; +} +p{ + font-family: Lato, Helvetica, Arial, sans-serif; + color: black !important; +} +img{ + width: 100%; + height: auto; + max-width: 100%; +} + + + +.headerLinks{ +display: flex; +align-items: center; +} +.headerLinks a{ +color: white; +text-decoration: none; +margin: 0 0 0 20px; +} +.content{ + display: flex; + align-items: center; +} +.fotoPerfil{ + width: 100%; + height: auto; + border-radius: 50%; + max-width: 100%; +} +.corPrimaria{ + background-color: lightgreen; +} +.corSecundaria{ + background-color: lightblue; +} +.titulosBrancos{ + text-decoration: underline; + text-underline-position: below; + text-transform: uppercase; + color: white; + padding-bottom: 20px; + font-weight: 700; +} +.titulosVerdes{ + text-decoration: underline; + text-underline-position: below; + text-transform: uppercase; + color: lightgreen; + padding-bottom: 20px; + font-weight: 700; +} +.textosBrancos{ + color:white !important; +} +.icones{ + padding-left: 5px; +} +.titulosCentro{ + text-align: center; +} \ No newline at end of file