-
Notifications
You must be signed in to change notification settings - Fork 113
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
Малышкин Александр #72
base: master
Are you sure you want to change the base?
Conversation
today i
🍏 Пройден линтинг и базовые тесты |
background: #98ff66; | ||
} | ||
|
||
aside |
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.
можно объединить с div
color: #6698ff; | ||
} | ||
|
||
article > a:nth-child(n + 2) |
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.
Работает, но можно еще проверять на наличие yandex.ru
в ссылке
opacity: .3; | ||
} | ||
|
||
img[alt^='css'] |
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.
Можно было сделать одним селектором, использовав :not
opacity: .5; | ||
} | ||
|
||
article:hover > a[href='https://ya.ru'] |
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.
Работает не совсем правильно. Надо, чтобы hover реагировал при наведении на каждую ссылку отдельно, а сейчас реагирует на обе сразу
border: 3px solid #ff6698; | ||
} | ||
|
||
article > input:nth-child(2) |
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.
Здесь хотелось, чтобы цвет выбирался в зависимости от валидности емейла в инпуте, а не просто по первому и второму инпуту
background: #ffb366; | ||
} | ||
|
||
div:nth-child(5), |
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.
Можно еще посмотреть на верстку внимательнее и найти отличие желтых блоков от оранжевых
opacity: .5; | ||
} | ||
|
||
div:hover |
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.
По ховеру остальные квадраты еще должны становиться более прозрачными
@@ -12,7 +12,10 @@ <h1 class="global-heading"> </h1> | |||
|
|||
<main class="global-results"> | |||
<style> | |||
/* your styles here */ | |||
.red-gt2:nth-child(n + 3) > div |
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.
today i
Посмотреть решение