diff --git a/src/index.html b/src/index.html index 955ab44fc5..3144a4f771 100644 --- a/src/index.html +++ b/src/index.html @@ -9,6 +9,66 @@ Document - Hello, world! +
+ + logo + + +
diff --git a/src/style.css b/src/style.css index c4301db288..c4f8719850 100644 --- a/src/style.css +++ b/src/style.css @@ -1 +1,32 @@ -/* styles go here */ +body { + background-color: #858585; + font-family: Roboto, sans-serif; + margin: 0; +} + +.nav { + justify-content: flex-end; + font-size: 15px; + background-color: #fff; + display: flex; + align-items: center; +} + +.nav__link { + padding: 25px; + text-decoration: none; +} + +.aimg { + position: absolute; + margin-top: 10px; + margin-left: 50px; +} + +.is_active::after { + content: ''; + height: 4px; + background-color: black; + display: block; + color: #00acdc; +}