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

Part 3 - Week 3 #3

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open

Part 3 - Week 3 #3

wants to merge 3 commits into from

Conversation

Ralex2105
Copy link
Collaborator

Добавил светлую тему и переработал html в соответствии в методологией
Не придумал, куда вставить кнопку для переключения темы - она пока живет в секции experience (как появится больше содержимого - перенесу).

@Ralex2105 Ralex2105 requested a review from Leikam November 6, 2021 17:34
Copy link

@Leikam Leikam left a comment

Choose a reason for hiding this comment

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

Оценка 7/10

В целом по компонентам разбито неплохо. Не хватило более детализированных компонентов, модификаторов, некоторые названы не совсем удачно (links). Хорошо бы компоненты разбивать по отдельным файлам.

@@ -0,0 +1,7 @@
function script() {
Copy link

Choose a reason for hiding this comment

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

в названии лучше отражать логику работы функции. Будет проще читать код и стектрейс.

@@ -0,0 +1,17 @@
:root .dark {
Copy link

Choose a reason for hiding this comment

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

все правильно.
Можно использовать просто классы, без :root. Хотя базовые стили я бы ставил под рут вообще без класса, далее переписывал бы под соответствующими классами то, что надо.

<article class="info">
<section class="info-general">
<div class="info-general__avatar">
<img id="avatar" src="assets/view/avatar.png" alt="my_avatar">
Copy link

Choose a reason for hiding this comment

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

не забывай, что id на странице должен быть уникальный, что требует и более уникальных названий.

<div class="info-general__position">
Idler
</div>
<div class="info__links link">
Copy link

Choose a reason for hiding this comment

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

неожиданно на обертке видеть класс link. Линк обычно это <a> или js-кнопка.

</div>
<div class="info__links link">
<section class="link__github">
<a href="https://github.com/Ralex2105">
Copy link

Choose a reason for hiding this comment

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

скорее вот это должен быть .link

<img id="github" src="assets/view/Octocat.png" alt="github">
</a>
</section>
<section class="link__vk">
Copy link

Choose a reason for hiding this comment

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

section, по-смыслу (семантически) что-то более крупное - секция страницы с контентом. Для одной ссылки это мелкова-то.

</a>
</section>
<section class="link__tg">
<a href="https://github.com/Ralex2105">
Copy link

Choose a reason for hiding this comment

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

рекомендую ссылкам всегда давать классы, это обычно наиболее важные части страницы.
Как правило каждая ссылка обычно носит базовый класс ссылки (скажем, link), которая управляет тем, как отображаются ссылки на всем сайте/портале без учета специфичных стилей какого-то конкретного места на странице. Например все ссылки по базе - синие. А в оповещении - красные.

Тогда базовые стили будет
.link {color: blue}

а в оповещении оверайд:
.notification .link {color: red}

или как элемент:
.notification__link {color: red}

<button id="download-button" type="submit">Download CV</button>
</section>
</section>
<footer class="info-general__copyright">©2021 All rights reserved.</footer>
Copy link

Choose a reason for hiding this comment

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

а тут футер хорошо смотрится

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants