Skip to content

Commit

Permalink
Спринт 2 Ревью 1
Browse files Browse the repository at this point in the history
  • Loading branch information
gazievri committed Jan 20, 2022
1 parent afffeec commit 5ba3c98
Show file tree
Hide file tree
Showing 80 changed files with 672 additions and 507 deletions.
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# How to learn
---
Учебный проект, выполняемый в рамках учебы в **Яндекс.Практикум** по специальности web-разработчик. Основная задача проекта - реализовать на практике полученные теоретические знание по web-разработке.

Проект представляет собой web-сайт, посвященный вопросам повышения эффективности процесса обучения.

Проект будет дорабатываться по мере освоения новых знаний в процессе обучения.
7 changes: 7 additions & 0 deletions blocks/cards/__description/cards__description.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.cards__description {
line-height: 23px;
font-size: 18px;
font-weight: normal;
text-align: center;
margin: 16px 0 0;
}
6 changes: 6 additions & 0 deletions blocks/cards/__image/cards__image.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.cards__image {
width: 160px;
height: 160px;
border-radius: 50%;
margin: 60px 40px 43px;
}
3 changes: 3 additions & 0 deletions blocks/cards/__item/cards__item.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.cards__item {
width: 240px;
}
7 changes: 7 additions & 0 deletions blocks/cards/__title/cards__title.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.cards__title {
font-size: 24px;
font-weight: bold;
line-height: 1.15;
text-align: center;
margin: 0;
}
10 changes: 10 additions & 0 deletions blocks/cards/cards.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.cards {
width: 920px;
margin: auto;

display: grid;
grid-template-columns: auto auto auto;
column-gap: 100px;
row-gap: 60px;
padding-top: 60px;
}
15 changes: 15 additions & 0 deletions blocks/feynman/__link/feynman__link.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
.feynman__link {
line-height: 51px;
font-size: 36px;
font-weight: normal;
color: #2f80ed;
text-decoration: none;
position: absolute;
right: 48px;
top: 50%;
transition: opacity, 0.5s;
}

.feynman__link:hover {
opacity: 0.6;
}
7 changes: 7 additions & 0 deletions blocks/feynman/__subtitle/feynman__subtitle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.feynman__subtitle {
line-height: 51px;
font-size: 36px;
font-weight: normal;
text-align: center;
margin: 0;
}
8 changes: 8 additions & 0 deletions blocks/feynman/__title/feynman__title.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.fyenman__title {
line-height: 1.15;
font-size: 120px;
font-weight: bold;
width: 648px;
text-align: center;
margin: 100px 0 70px;
}
12 changes: 12 additions & 0 deletions blocks/feynman/feynman.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.feynman {
display: flex;
flex-direction: column;
height: 890px;
background-image: url("/images/feynman.png");
background-repeat: no-repeat;
background-position: bottom left;
background-size: 867px 637px;
background-color: #f2f2f2;
align-items: center;
position: relative;
}
5 changes: 5 additions & 0 deletions blocks/footer/__author/footer__author.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.footer__author {
line-height: 25px;
font-size: 18px;
font-weight: normal;
}
6 changes: 6 additions & 0 deletions blocks/footer/__column-heading/footer__column-heading.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.footer__column-heading {
line-height: 30px;
font-size: 18px;
font-weight: bold;
margin-top: 0;
}
12 changes: 12 additions & 0 deletions blocks/footer/__column-link/footer__column-link.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.footer__column-link {
line-height: 30px;
font-size: 18px;
font-weight: normal;
text-decoration: none;
color: #fff;
transition: opacity, 0.5s;
}

.footer__column-link:hover {
opacity: 0.6;
}
7 changes: 7 additions & 0 deletions blocks/footer/__column-links/footer__column-links.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.footer__column-links {
display: list-item;
list-style-type: none;
list-style-position: outside;
margin: 20px 0 16px;
padding: 0;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.footer__column_content_copyright {
display: flex;
flex-direction: column;
flex-basis: 711px;
justify-content: space-between;
}
8 changes: 8 additions & 0 deletions blocks/footer/__columns/footer__columns.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.footer__columns {
width: 90%;
min-height: 250px;
margin: 60px auto 40px;
display: flex;
flex-direction: row;
justify-content: space-between;
}
7 changes: 7 additions & 0 deletions blocks/footer/footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.footer {
display: flex;
min-height: 350px;
background-color: #1f1f1f;
color: #fff;
margin: 0;
}
9 changes: 9 additions & 0 deletions blocks/header/__link/header__link.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.header__link {
color: #2f80ed;
text-decoration: none;
transition: opacity, 0.5s;
}

.header__link:hover {
opacity: 0.6;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.header__main-illustration {
position: absolute;
width: 765px;
height: 608px;
bottom: 0;
right: 0;
z-index: 0;
}
8 changes: 8 additions & 0 deletions blocks/header/__square-pic/header__square-pic.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.header__square-pic {
height: 568px;
width: 568px;
background-color: #2f80ed;
position: absolute;
right: 0;
top: 64px;
}
10 changes: 10 additions & 0 deletions blocks/header/__subtitle/header__subtitle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.header__subtitle {
position: absolute;
width: 388px;
left: 64px;
bottom: 30px;
line-height: 25px;
font-size: 18px;
z-index: 1;
margin: 0;
}
8 changes: 8 additions & 0 deletions blocks/header/__title/header__title.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.header__title {
width: 730px;
line-height: 96px;
font-size: 102px;
margin: 0 0 0 64px;
z-index: 1;

}
12 changes: 12 additions & 0 deletions blocks/header/header.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.header {
height: 100vh;
min-height: 600px;
max-height: 756px;
background-color: #f2f2f2;
display: flex;
flex-direction: column;
justify-content: center;
margin: 0 0 0 0;
position: relative;
overflow: hidden;
}
10 changes: 10 additions & 0 deletions blocks/kaufman/__triangle/kaufman__triangle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.kaufman__triangle {
background-image: url(/images/kaufman-triangle.svg);
background-size: cover;
width: 877px;
height: 877px;
position: absolute;
top: 0;
right: -210px;
z-index: 0;
}
9 changes: 9 additions & 0 deletions blocks/kaufman/kaufman.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.kaufman {
background-color: #1f1f1f;
display: flex;
flex-direction: column;
align-items: center;
position: relative;
overflow: hidden;
margin: 0 0 0 0;
}
6 changes: 6 additions & 0 deletions blocks/khan/__author/khan__author.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.khan__author {
line-height: 42px;
font-size: 30px;
font-weight: normal;
margin: 0;
}
3 changes: 3 additions & 0 deletions blocks/khan/__book-container/khan__book-container.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.khan__book-container {
display: flex;
}
7 changes: 7 additions & 0 deletions blocks/khan/__book-pic/khan__book-pic.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.khan__book-pic {
width: 620px;
height: 608px;
object-fit: cover;
object-position: top right;
margin: 0 48px 0 0;
}
13 changes: 13 additions & 0 deletions blocks/khan/__buy-link/khan__buy-link.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
.khan__buy-link {
line-height: 42px;
font-size: 30px;
font-weight: normal;
color: #2f80ed;
text-decoration: none;
transition: opacity, 0.5s;
align-self: baseline;
}

.khan__buy-link:hover {
opacity: 0.6;
}
4 changes: 4 additions & 0 deletions blocks/khan/__container/khan__container.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.khan__container {
width: 80%;
margin: auto;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.khan__quote-author-subline {
line-height: 1.15;
font-size: 24px;
font-weight: normal;
margin: 10px 0 68px;
}
6 changes: 6 additions & 0 deletions blocks/khan/__quote-author/khan__quote-author.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.khan__quote-author {
line-height: 1.15;
font-size: 24px;
font-weight: bold;
margin: 0;
}
6 changes: 6 additions & 0 deletions blocks/khan/__quote/khan__quote.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.khan__quote {
line-height: 34px;
font-size: 24px;
font-weight: normal;
margin: 50px 0 36px;
}
6 changes: 6 additions & 0 deletions blocks/khan/__title/khan__title.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.khan__title {
line-height: 1.15;
font-size: 60px;
font-weight: bold;
margin: 0;
}
3 changes: 3 additions & 0 deletions blocks/khan/khan.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.khan {
background-color: #f2f2f2;
}
5 changes: 5 additions & 0 deletions blocks/logo/_place/logo_place_footer.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.logo_place_footer {
background-image: url(/images/logo_place_footer.svg);
width: 183px;
height: 35px;
}
6 changes: 6 additions & 0 deletions blocks/logo/_place/logo_place_header.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.logo_place_header {
position: absolute;
top: 30px;
left: 64px;
z-index: 1;
}
4 changes: 4 additions & 0 deletions blocks/logo/logo.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.logo {
width: 183px;
height: 32px;
}
6 changes: 6 additions & 0 deletions blocks/oakley/oakley.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.oakley {
background-color: #f2f2f2;
display: flex;
padding: 0;
margin; 0;
}
6 changes: 6 additions & 0 deletions blocks/resources/__logo-zone/resources__logo-zone.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.resources__logo-zone {
display: flex;
width: 1100px;
margin: 80px auto 217px;
justify-content: space-between;
}
9 changes: 9 additions & 0 deletions blocks/resources/__logo/resources__logo.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.resources__logo {
width: 270px;
height: 38px;
transition: opacity, 0.5s;
}

.resources__logo:hover {
opacity: 0.6;
}
3 changes: 3 additions & 0 deletions blocks/resources/resources.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.resources {

}
10 changes: 10 additions & 0 deletions blocks/root/root.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.page {
min-width: 1100px;
/* мы ещё не умеем делать мобильную версию сайта, */
/* поэтому выше установлена минимальная ширина страницы */
max-width: 1600px;
/* выше установили ограничение по максимальной ширине */
margin: 0 auto;
/* выше для экранов больше 1600px отцентрировали весь контент */
font-family: 'Helvetica Neue', Arial, sans-serif;
}
12 changes: 12 additions & 0 deletions blocks/rotation/rotation.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
@keyframes rotation {
from {
transform: rotate(0deg);
}
to {
transform: rotate(360deg);
}
}

.rotation {
animation: rotation 20s linear infinite;
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.section-subtitle_theme_dark {
text-align: center;
width: 60%;
color: white;
line-height: 34px;
font-size: 24px;
font-weight: normal;
margin: 20px 0 0 0;
}
8 changes: 8 additions & 0 deletions blocks/section-subtitle/section-subtitle.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.section-subtitle {
text-align: center;
width: 60%;
line-height: 34px;
font-size: 24px;
font-weight: normal;
margin: auto;
}
Loading

0 comments on commit 5ba3c98

Please sign in to comment.