-
Notifications
You must be signed in to change notification settings - Fork 0
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
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this 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() { |
There was a problem hiding this comment.
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 { |
There was a problem hiding this comment.
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"> |
There was a problem hiding this comment.
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"> |
There was a problem hiding this comment.
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"> |
There was a problem hiding this comment.
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"> |
There was a problem hiding this comment.
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"> |
There was a problem hiding this comment.
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> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
а тут футер хорошо смотрится
Добавил светлую тему и переработал html в соответствии в методологией
Не придумал, куда вставить кнопку для переключения темы - она пока живет в секции experience (как появится больше содержимого - перенесу).