Skip to content

Commit

Permalink
review_fix_medium
Browse files Browse the repository at this point in the history
  • Loading branch information
stereogamm committed Dec 28, 2023
1 parent 59c4ac9 commit 3e02ff1
Showing 1 changed file with 28 additions and 12 deletions.
40 changes: 28 additions & 12 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,6 @@ ol {
justify-content: space-between;
}

.button:active {
background-color: #545050;
text-decoration: none;
}

.content__video-card-description-container {
display: flex;
flex-direction: column;
Expand All @@ -144,7 +139,7 @@ ol {
height: 103px;
object-fit: cover;
object-position: center;
align-items: end;
align-self: end;
}

.preloader {
Expand All @@ -154,6 +149,13 @@ ol {
z-index: 2;
}

.search-form {
display: flex;
justify-content: space-between;
align-self: start;
gap: 40px;
}

.search-form__fieldset-title {
font-size: 18px;
font-style: normal;
Expand Down Expand Up @@ -207,8 +209,8 @@ ol {
border: none;
display: flex;
flex-direction: column;
justify-content: end;
align-self: center;
justify-content: start;
align-items: start;
}

.search-form__label {
Expand All @@ -231,6 +233,8 @@ ol {

.search-form__checkbox-list {
display: flex;
justify-content: space-between;
align-items: center;
}

.search-form__textfield {
Expand All @@ -252,8 +256,9 @@ ol {

.search-form__label-text {
display: flex;
align-items: start;
align-self: start;
margin-left: 5px;
justify-content: center;
}

.search-form__label:not(:last-child) {
Expand Down Expand Up @@ -294,6 +299,11 @@ ol {
line-height: normal;
}

.button:active {
text-decoration: none;
background-color: #545050;
}

.content__video-card:active {
background: #545050;
}
Expand All @@ -313,6 +323,7 @@ ol {

.search-form__label:has(:focus-visible) {
outline: 1px solid #fff;
outline-offset: 2px;
}

.search-form__pseudo-checkbox {
Expand All @@ -323,7 +334,7 @@ ol {
height: 19px;
border: 1px solid #fff;
position: relative;
margin: 1px;

}

.search-form__pseudo-checkbox::before {
Expand All @@ -346,9 +357,14 @@ ol {
outline: none;
}

.button:focus-visible {
.search-form__submit-button:focus-visible {
outline: 1px solid #fff;
outline-offset: 2px;
}

.more-button:focus-visible {
outline: 1px solid #fff;
outline-offset: -2px;
outline-offset: -3px;
}

.content__card-link {
Expand Down

0 comments on commit 3e02ff1

Please sign in to comment.