From eedc3f961e8c4ae915a732b02cfa7314466bbba8 Mon Sep 17 00:00:00 2001 From: nunesjaqueline <74539406+nunesjaqueline@users.noreply.github.com> Date: Tue, 7 Jun 2022 10:21:36 +0200 Subject: [PATCH] Create style.css --- style.css | 64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 64 insertions(+) create mode 100644 style.css diff --git a/style.css b/style.css new file mode 100644 index 0000000..511d470 --- /dev/null +++ b/style.css @@ -0,0 +1,64 @@ +@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500;700&display=swap'); + +body { + background-color: pink; + font-family: 'Roboto', sans-serif; + margin: 0px; + +} + +nav { + display: grid; + background-color: white; + box-sizing: border-box; + height: 100px; + place-items: center; + +} + +.nav-center { + display: flex; + justify-content: space-around; + align-items: center; + width: 90vw; +} + +.nav-left { + display: flex; + justify-content: space-between; + align-items: center; + width: 6vw; +} + +main { + display: grid; + place-items: center; +} + +.container { + display: block; + text-align: center; + justify-content: space-between; + align-items: center; +} + +.container h2 { + background-color: black; + color: white; + border-radius: 10px; + padding: 20px; +} +.btn { + background-color: transparent; + border: solid black; + border-radius: 10px; +} + +.btn:hover { + background-color: black; + color: white; +} + +.container span { + color: #007FFF; +}