Skip to content

Сидоров Артем#57

Open
art-ylem wants to merge 5 commits intourfu-2017:masterfrom
art-ylem:master
Open

Сидоров Артем#57
art-ylem wants to merge 5 commits intourfu-2017:masterfrom
art-ylem:master

Conversation

@art-ylem
Copy link
Copy Markdown

@art-ylem art-ylem commented Oct 14, 2017

@honest-hrundel honest-hrundel changed the title try1 Сидоров Артем Oct 14, 2017
@honest-hrundel
Copy link
Copy Markdown

🍅 Не пройден линтинг или базовые тесты

@honest-hrundel
Copy link
Copy Markdown

🍏 Пройден линтинг и базовые тесты

@honest-hrundel
Copy link
Copy Markdown

🍏 Пройден линтинг и базовые тесты

@savichev-igor
Copy link
Copy Markdown

Сразу же на будущее - называй коммиты так, чтобы они несли хоть какую-то смысловую нагрузку и кратко отражали то, что изменилось

@art-ylem
Copy link
Copy Markdown
Author

ок

Copy link
Copy Markdown

@savichev-igor savichev-igor left a comment

Choose a reason for hiding this comment

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

🍅

Comment thread tasks/2.html Outdated
background: #ffb366;
}

.c2 :first-child
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Попробуй сделать без first-child

Comment thread tasks/3.html Outdated
border: 2px solid #000;
}

div:empty
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Можно сделать вложенность обычную div div

Comment thread tasks/4.html Outdated
<style>
/* your styles here */

.global-scope article:nth-of-type(n+2)
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Сложно

Можно решить с использованием двух тэгов

Comment thread tasks/5.html
<style>
/* your styles here */

#checkbox:checked ~ .tab
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Я бы не стал полагаться на дефолтные стили для анчекнутого состояния, вдруг их кто-то переопределит в будущем

Comment thread tasks/6.html Outdated
<style>
/* your styles here */

.global-scope a :first-child
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Слишком сложно и работает неправильно

Comment thread tasks/17.html Outdated
<style>
/* your styles here */

input:checked ~ input
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Можно решить задание за один селектор

Comment thread tasks/18.html Outdated
opacity: .5;
}

section article div:hover
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

section можно убрать

Comment thread tasks/19.html Outdated
background: #fff;
}

div:first-child > div:nth-child(4)
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

А почему не сделать last-child вместо nth-child?

Comment thread tasks/19.html Outdated
background: #6698ff;
}

div:last-child > div:nth-child(1)
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Аналогично

Comment thread tasks/20.html Outdated
<style>
/* your styles here */

div:nth-child(3) > div,
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Использовал бы класс вместо div

@honest-hrundel
Copy link
Copy Markdown

🍅 Не пройден линтинг или базовые тесты

@honest-hrundel
Copy link
Copy Markdown

🍏 Пройден линтинг и базовые тесты

@savichev-igor
Copy link
Copy Markdown

bags fix
bags fix 2

почти также информативно как
коммит 1
коммит 2

@art-ylem
Copy link
Copy Markdown
Author

Но там ведь много ошибок исправил. Надо по каждую писать? Или надо было что-то типа "Исправление замечаний от ментора"?

@art-ylem
Copy link
Copy Markdown
Author

И что насчет самого исправленного кода, норм?

Copy link
Copy Markdown

@savichev-igor savichev-igor left a comment

Choose a reason for hiding this comment

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

Где-то стало лучше 🍅

Comment thread tasks/11.html
}

input:last-child
input[value='email@yandex.ru']
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

То есть если я введу igor@savichev.me, то это значение будет невалидно?

Comment thread tasks/15.html
/* your styles here */

a[href$='.zip']::after
li:last-child a::after,
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Не нужно привязываться к местоположению элементов, нужно семантически делать выборку..

Comment thread tasks/1.html
<section class="global-result">
<style>
/* your styles here */

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Лишняя строка

Comment thread tasks/10.html
@@ -12,6 +12,16 @@ <h1 class="global-heading">&nbsp;</h1>
<main class="global-results">
<style>
/* your styles here */
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

А почему вверху удалил комментарий, а тут оставил)?

Comment thread tasks/11.html
<style>
/* your styles here */

input[value='invalid-email']
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Не нужно цепляться к значению и хардкодить его

type="email" сразу знает, как выглядит нормальный электронный адрес и здесь нужно использовать valid и invalid

Comment thread tasks/12.html
background: #ffb366;
}

div:nth-child(even),
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Можно сильно проще..

Comment thread tasks/15.html
<style>
/* your styles here */

li:last-child a::after,
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Можно сильно проще..

Comment thread tasks/6.html
<style>
/* your styles here */

a:first-child
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Здесь нужно цепляться к содержимому href

Comment thread tasks/9.html
<style>
/* your styles here */

a.link[href]
Copy link
Copy Markdown

@savichev-igor savichev-igor Oct 16, 2017

Choose a reason for hiding this comment

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

Эффект при нажатии не работает

@savichev-igor
Copy link
Copy Markdown

"Исправил замечания" вполне понятный коммит =)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

3 participants