Skip to content

Commit

Permalink
Исправление после Ревью 1
Browse files Browse the repository at this point in the history
  • Loading branch information
VitalyChy committed Jan 2, 2024
1 parent f4b044c commit a4f9ccb
Showing 1 changed file with 29 additions and 40 deletions.
69 changes: 29 additions & 40 deletions styles/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ html {
background-color: #1b1919;
inline-size: 1200px;
block-size: 100%;
display: flex;
justify-content: center;
align-items: center;
min-block-size: 100vh;
}

h1,
Expand Down Expand Up @@ -47,15 +51,16 @@ ol {
white-space: nowrap;
}

.content {
.content {
display: flex;
justify-content: center;
align-items: flex-end;
gap: 30px;
padding-top: 133px;
gap: 30px;
margin: 133px 30px;

}

/* search-form Start*/
/* search-form Start padding-top: 133px; */

.search-form {
display: flex;
Expand Down Expand Up @@ -111,7 +116,7 @@ ol {
border-bottom: 1px solid #FFF;
padding-top: 6px;
padding-bottom: 4px;
color: rgba(255, 255, 255, 0.70);
color: #fff;
font-family: 'Fira Sans Condensed', sans-serif;
font-weight: 400;
font-size: 18px;
Expand All @@ -121,12 +126,12 @@ ol {
appearance: none;
}

.search-form__textfield:focus {
outline: none;
.search-form__textfield::placeholder {
color: rgba(255, 255, 255, 0.70);
}

.search-form__textfield:focus-visible {
outline: 1px solid #fff;
.search-form__textfield:focus {
outline: none;
}

.search-form__textfield:active {
Expand All @@ -153,10 +158,6 @@ ol {
cursor: pointer;
}

.search-form__label:focus {
outline: none;
}

.search-form__label:has(:focus-visible) {
outline: 1px solid #FFF;
}
Expand Down Expand Up @@ -237,11 +238,6 @@ ol {
text-transform: uppercase;
}

.content__card-link {
color: #FFF;
text-decoration: none;
}

.content__video-card-title {
width: 200px;
padding-bottom: 6px;
Expand All @@ -259,33 +255,20 @@ ol {
}

.button {
display: flex;
flex-shrink: 0;
justify-content: center;
align-items: center;
gap: 10px;
width: 194px;
height: 34px;
min-height: 34px;
border: 1px solid #FFF;
background: transparent;
cursor: pointer;
}

.more-button {
display: flex;
flex-shrink: 0;
justify-content: center;
align-items: center;
gap: 10px;
width: 399px;
height: 34px;
color: #FFF;
font-family: 'Fira Sans Condensed', sans-serif;
font-family: 'Fira Sans Condensed';
font-weight: 700;
font-size: 18px;
font-style: normal;
line-height: normal;
text-align: center;
text-align: center;
background-color: rgb(0 0 0/ 0);
}

.more-button {
width: 399px;
}

.button:focus {
Expand All @@ -311,8 +294,10 @@ ol {


.content__card-link {
display: block;
display: block;
margin: 2px;
color: #FFF;
text-decoration: none;
}

.content__card-link:active {
Expand All @@ -329,4 +314,8 @@ ol {

.content__card-link:focus-visible {
outline: 1px solid #fff;
}

.content__card-link_current {
background-color: #545050;
}

0 comments on commit a4f9ccb

Please sign in to comment.