diff --git a/src/index.html b/src/index.html index b39fe97123..25e3d57d94 100644 --- a/src/index.html +++ b/src/index.html @@ -18,5 +18,60 @@

Moyo header

+ +
+
+ logo Moyo +
+ + +
diff --git a/src/style.css b/src/style.css index 293d3b1f13..08a18a6a5a 100644 --- a/src/style.css +++ b/src/style.css @@ -1,3 +1,76 @@ body { + margin: 0 auto; + font-family: Roboto; + background: rgba(229, 229, 229, 1); +} + +:root { + --blue-color: #00acdc; +} + +* { + box-sizing: border-box; margin: 0; + font-family: Roboto, sans-serif; + font-size: 12px; +} + +.header { + padding: 0 50px; + width: 100%; + display: flex; + justify-content: space-evenly; + align-items: center; + background-color: rgba(255, 255, 255, 1); +} + +img { + height: 40px; + margin-top: 10px; +} + +a { + display: block; + text-decoration: none; + line-height: 60px; + height: 60px; + color: rgba(0, 0, 0, 1); +} + +nav a { + text-transform: uppercase; +} + +.is-active { + color: var(--blue-color); + position: relative; +} + +.is-active::after { + content: ''; + position: absolute; + background-color: var(--blue-color); + width: 100%; + height: 4px; + border-radius: 8px; + left: 0; + bottom: 0; + right: 0; +} + +ul { + list-style: none; + display: flex; +} + +li:not(:first-child) { + margin-left: 20px; +} + +li:last-child { + margin-right: 0; +} + +a:hover { + color: var(--blue-color); }