Skip to content

Commit

Permalink
redacted all of mistakes
Browse files Browse the repository at this point in the history
  • Loading branch information
ell10tt committed May 7, 2024
1 parent 90533da commit 0f8849f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 34 deletions.
4 changes: 2 additions & 2 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
/>
</head>
<body>
<header>
<header class="header">
<a
href="index.html"
class="logo-link"
Expand All @@ -41,7 +41,7 @@
/>
</a>
<nav class="roboto-medium">
<ul>
<ul class="nav__list">
<a
class="page-link is-active"
href="#"
Expand Down
48 changes: 16 additions & 32 deletions src/style.css
Original file line number Diff line number Diff line change
@@ -1,13 +1,21 @@
* {
font-size: 12px;
text-transform: uppercase;
box-sizing: border-box;
}

html {
font-family: Roboto, sans-serif;
font-style: normal;
}

body {
margin: 0;
}

header {
font-size: 12px;
text-transform: uppercase;
box-sizing: border-box;
.header {
width: 100vw;
background-color: #ffff;
background-color: #fff;
display: flex;
align-items: center;
justify-content: space-between;
Expand All @@ -26,14 +34,15 @@ header {
height: 40px;
}

ul {
.nav__list {
display: flex;
padding: 0;
margin: 0;
list-style: none;
}

.page-link {
font-weight: 500;
margin-left: 20px;
position: relative;
display: flex;
Expand All @@ -47,10 +56,7 @@ ul {
margin-left: 0;
}

.page-link:hover {
color: #00acdc;
}

.page-link:hover,
.is-active {
color: #00acdc;
}
Expand All @@ -66,25 +72,3 @@ ul {
border-radius: 8px;
background-color: #00acdc;
}

/* #REGION start */

.roboto-regular {
font-family: Roboto, sans-serif;
font-weight: 400;
font-style: normal;
}

.roboto-medium {
font-family: Roboto, sans-serif;
font-weight: 500;
font-style: normal;
}

.roboto-bold {
font-family: Roboto, sans-serif;
font-weight: 700;
font-style: normal;
}

/* #REGION end */

0 comments on commit 0f8849f

Please sign in to comment.