commit d38d35faebd60963c2424172448d49306e66c3e6 Author: Raoni Silva Date: Wed May 10 16:38:04 2023 -0300 navbar ok diff --git a/.DS_Store b/.DS_Store new file mode 100644 index 0000000..e1aba18 Binary files /dev/null and b/.DS_Store differ diff --git a/img/.DS_Store b/img/.DS_Store new file mode 100644 index 0000000..c8f63b2 Binary files /dev/null and b/img/.DS_Store differ diff --git a/img/mamute-home.jpeg b/img/mamute-home.jpeg new file mode 100644 index 0000000..14b352d Binary files /dev/null and b/img/mamute-home.jpeg differ diff --git a/img/whale.png b/img/whale.png new file mode 100644 index 0000000..a034c20 Binary files /dev/null and b/img/whale.png differ diff --git a/index.html b/index.html new file mode 100644 index 0000000..dae9674 --- /dev/null +++ b/index.html @@ -0,0 +1,31 @@ + + + + + + + + Document + + +
+ logo + +
+
+ +
+ + + + \ No newline at end of file diff --git a/style/index.css b/style/index.css new file mode 100644 index 0000000..06a6499 --- /dev/null +++ b/style/index.css @@ -0,0 +1,35 @@ +body { + margin: 0; + padding: 0; + font-family: Roboto, Helvetica, sans-serif; +} + +.navbar{ + background-color: gray; + display: flex; + min-height: 50px; + align-items: center; + justify-content: space-between; + width: 100vw; +} + +.navbar img { + width: 40px; + height: 30px; + margin: 5px 20px; +} + +.pages a { + text-decoration: none; + margin-right: 10px; + color: white; + font-size: 14px; +} + +.pages a:hover { + color: rgb(196, 208, 251); +} + +a:last-child { + margin-right: 20px; +} \ No newline at end of file