Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add task solution #5739

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/test.yml-template
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Test

on:
pull_request:
branches: [ master ]

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- run: npm test
- name: Upload HTML report(backstop data)
if: ${{ always() }}
uses: actions/upload-artifact@v2
with:
name: report
path: backstop_data
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,12 @@
"keywords": [],
"author": "Mate Academy",
"license": "GPL-3.0",
"dependencies": {},
"devDependencies": {
"@linthtml/linthtml": "^0.9.6",
"@mate-academy/backstop-config": "latest",
"@mate-academy/bemlint": "latest",
"@mate-academy/linthtml-config": "latest",
"@mate-academy/scripts": "^1.8.6",
"@mate-academy/scripts": "^1.9.12",
"@mate-academy/stylelint-config": "latest",
"backstopjs": "6.3.23",
"jest": "^29.7.0",
Expand Down
4 changes: 2 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ The page should match the design Pixel Perfect: all the sizes, colors and distan

❗️ Replace `<your_account>` with your Github username and copy the links to `Pull Request` description:

- [DEMO LINK](https://<your_account>.github.io/layout_moyo-header/)
- [TEST REPORT LINK](https://<your_account>.github.io/layout_moyo-header/report/html_report/)
- [DEMO LINK](https://ilkovych.github.io/layout_moyo-header/)
- [TEST REPORT LINK](https://ilkovych.github.io/layout_moyo-header/report/html_report/)

❗️ Copy this `Checklist` to the `Pull Request` description after links, and put `- [x]` before each point after you checked it.

Expand Down
95 changes: 94 additions & 1 deletion src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,105 @@
content="ie=edge"
/>
<title>Moyo header</title>
<link
rel="preconnect"
href="https://fonts.googleapis.com"
/>
<link
rel="preconnect"
href="https://fonts.gstatic.com"
crossorigin="anonymous"
/>
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap"
rel="stylesheet"
/>
<link
rel="stylesheet"
href="./style.css"
/>
</head>
<body>
<h1>Moyo header</h1>
<header>
<a
class="navigation__logo"
href="#"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The href attribute is currently set to '#', which is a placeholder. Consider replacing it with a valid URL or a JavaScript function if this is intended to be a clickable link.

>
<img
class="logo"
src="images/logo.png"
alt="Site logo"
/>
</a>
<nav class="navigation">
<ul class="navigation__list">
<li class="navigation__item">
<a
href="#"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The href attribute is set to '#'. Ensure this is intentional or replace it with a valid URL.

class="navigation__link is-active"
>
Apple
</a>
</li>
<li class="navigation__item">
<a
href="#"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The href attribute is set to '#'. Ensure this is intentional or replace it with a valid URL.

class="navigation__link"
>
Samsung
</a>
</li>
<li class="navigation__item">
<a
href="#"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The href attribute is set to '#'. Ensure this is intentional or replace it with a valid URL.

class="navigation__link"
>
Smartphones
</a>
</li>
<li class="navigation__item">
<a
href="#"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The href attribute is set to '#'. Ensure this is intentional or replace it with a valid URL.

class="navigation__link"
data-qa="hover"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The data-qa attribute is used here, which is typically for testing purposes. Ensure this is necessary for your application or remove it if not needed.

>
Laptops & Computers
</a>
</li>
<li class="navigation__item">
<a
href="#"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The href attribute is set to '#'. Ensure this is intentional or replace it with a valid URL.

class="navigation__link"
>
Gadgets
</a>
</li>
<li class="navigation__item">
<a
href="#"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The href attribute is set to '#'. Ensure this is intentional or replace it with a valid URL.

class="navigation__link"
>
Tablets
</a>
</li>
<li class="navigation__item">
<a
href="#"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The href attribute is set to '#'. Ensure this is intentional or replace it with a valid URL.

class="navigation__link"
>
Photo
</a>
</li>
<li class="navigation__item">
<a
href="#"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The href attribute is set to '#'. Ensure this is intentional or replace it with a valid URL.

class="navigation__link"
>
Video
</a>
</li>
</ul>
</nav>
</header>
</body>
</html>
68 changes: 68 additions & 0 deletions src/style.css
Original file line number Diff line number Diff line change
@@ -1,3 +1,71 @@
:root {
--primary-color: #00acdc;
--primary-background: #fff;
--primary-background-alternative: #e5e5e5;
--primary-text-color: #000;
--font-family: 'Roboto', serif;
}

body {
margin: 0;
}

header {
background-color: var(--primary-background);
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 50px;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The padding is set to a fixed value of 50px. Consider using relative units like percentages or rems for better responsiveness across different screen sizes.

}

.navigation__logo {
display: flex;
}

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

.navigation__item {
margin-left: 20px;
}

.navigation__item:first-child {
margin-left: 0;
}

.navigation__link {
height: 60px;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The height is set to a fixed value of 60px. Consider using relative units or media queries to adjust this for different screen sizes.

display: flex;
align-items: center;
text-decoration: none;
text-transform: uppercase;
color: var(--primary-text-color);
font-family: var(--font-family);
font-weight: 500;
font-style: normal;
font-size: 12px;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The font size is set to 12px, which might be too small for readability on some devices. Consider using relative units like em or rem for better accessibility.

}

.navigation__link:hover {
color: var(--primary-color);
}

.is-active {
color: var(--primary-color);
position: relative;
}

.is-active::after {
content: '';
display: block;
height: 4px;
width: 100%;
position: absolute;
border-radius: 8px;
background-color: var(--primary-color);
bottom: 0;
}