diff --git a/package-lock.json b/package-lock.json index 44d21ceede..f0941d654f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13102,9 +13102,9 @@ "dev": true }, "msgpackr": { - "version": "1.9.9", - "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.9.9.tgz", - "integrity": "sha512-sbn6mioS2w0lq1O6PpGtsv6Gy8roWM+o3o4Sqjd6DudrL/nOugY+KyJUimoWzHnf9OkO0T6broHFnYE/R05t9A==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/msgpackr/-/msgpackr-1.10.1.tgz", + "integrity": "sha512-r5VRLv9qouXuLiIBrLpl2d5ZvPt8svdQTl5/vMvE4nzDMyEX4sgW5yWhuBBj5UmgwOTWj8CIdSXn5sAfsHAWIQ==", "dev": true, "requires": { "msgpackr-extract": "^3.0.2" diff --git a/src/index.html b/src/index.html index f67d080ee0..beb2cc541b 100644 --- a/src/index.html +++ b/src/index.html @@ -7,8 +7,25 @@ Moyo header + + + -

Moyo header

+
+ logo + +
diff --git a/src/style.css b/src/style.css index 293d3b1f13..87cb63a898 100644 --- a/src/style.css +++ b/src/style.css @@ -1,3 +1,79 @@ -body { +body, ul, li { margin: 0; + padding: 0; + box-sizing: border-box; +} + +body { + font-family: Roboto, sans-serif; +} + +.header { + display: flex; + justify-content: space-between; + align-items: center; + margin: 0 auto; + padding: 0 50px; +} + +img { + height: 40px; + width: 40px; +} + +nav { + display: flex; + align-items: center; + height: 100%; +} + +ul { + display: flex; + list-style-type: none; +} + +ul li { + display: inline-block; + margin-left: 20px; + position: relative; + line-height: 60px; +} + +.link { + display: block; + position: relative; + width: 100%; + height: 60px; + font-weight: 500; + text-transform: uppercase; + font-size: 12px; +} + +.is-active::after { + content: " "; + display: none; + position: absolute; + bottom: 0; + height: 4px; + width: 100%; + background-color: #00ACDC; + border-radius: 8px; +} + +.is-active:hover::after { + display: block; +} + +.is-active:hover { + color: #00ACDC; +} + + + +@media screen and (max-width: 1024px) { + header { + max-width: 1024px; + } } + +