-
Notifications
You must be signed in to change notification settings - Fork 0
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
add banner and facts #1
base: master
Are you sure you want to change the base?
Conversation
index.html
Outdated
</div> | ||
</nav> | ||
</div> | ||
<div class="row box-banner "> |
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.
пробел лишний, из-за него бывают проблемы
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.
пробел так и остался
@@ -0,0 +1,52 @@ | |||
.about { | |||
&__text-top-l { |
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.
что за приставки -r и -l везде?
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.
right and left
scss/_about.scss
Outdated
top: -30px; | ||
left: -30px; | ||
} | ||
|
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.
лишняя строка
scss/_about.scss
Outdated
@include font("Source Sans Pro", 16, rgba(255, 255, 255, 0.5)); | ||
font-weight: 400; | ||
} | ||
|
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.
тоже лишняя строка
@@ -0,0 +1,42 @@ | |||
.facts { | |||
background: rgba( 253, 242, 255, 1.0); | |||
; |
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.
что это?
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.
ну у этого блока не белый фон а такой в фигме...
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.
не, я про точку с запятой на третьей строке
кстати, на счет фона, если прозрачности нет, то rgba() просто не используют, а вместо него rgb
scss/_facts.scss
Outdated
&__boxes { | ||
flex-wrap: wrap; | ||
justify-content: center; | ||
|
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.
3 лишних строки
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.
блин, привычка когда стиль пишу эмет предлагает значения а потом для перехода на следующую строку Enter жму на автомате постоянно.
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.
один энтер не добавляет 3 лишних строки)))
scss/_facts.scss
Outdated
} | ||
&__text { | ||
@include font("Source Sans Pro", 16, rgba(51, 51, 51, 0.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.
а ты любишь лишние строки
scss/_facts.scss
Outdated
|
||
.icon-photo { | ||
font-size: 42px; | ||
|
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.
парм-пам-пам лшиняя строка
scss/_facts.scss
Outdated
.icon-0 { | ||
font-size: 42px; | ||
|
||
}.icon-health { |
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.
как это на одной строке с закрывающей скобочкой оказался новый селектор?
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.
селектор все так же и остался)
@import "_variables"; | ||
@import "_facts"; | ||
@import "_about"; | ||
html { |
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.
а вот тут лучше бы лишнюю строку)
} | ||
} | ||
&__blog { | ||
font-weight: 600; |
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.
а чего не через миксин задаешь толщину шрифта?
scss/styles.scss
Outdated
} | ||
} | ||
.arrow-left { | ||
width: 48px; |
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.
ого сколько стилей повторяющихся. DRY
No description provided.