-
Notifications
You must be signed in to change notification settings - Fork 12
HW1 #10
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
base: master
Are you sure you want to change the base?
HW1 #10
Conversation
| .weekday { | ||
| border-bottom: 2px solid #8E4140; | ||
| padding-top: 15px; | ||
| padding-bottom: 10px; |
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.
@Zorin-Alex Please look at padding property
You can set it in one line padding: 15px 0 10px 0
|
|
||
| .dayWeatherLogo { | ||
| padding-left: 15px; | ||
| padding-right: 15px; |
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.
@Zorin-Alex Please look at padding property
You can set in one line padding: 0 15px
| <body> | ||
| <article class="weatherWidget"> | ||
| <div class="location"> | ||
| <div class="weatherTypeLogo"><img src="img/weather/sunny-big.png" width="50%"></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.
@Zorin-Alex It's better to move width of image to css
| <div class="weekdayInformation"><p class="weekday">Fri</p><p class="dayTimeTemp">22 °C</p><p class="nightTimeTemp">20 °C</p></div> | ||
| </div> | ||
| <div class="day"> | ||
| <img class="dayWeatherLogo" src="img/weather/cloudy.png" width="70%"> |
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.
@Zorin-Alex same case with width for the . dayWeatherLogo. It's much more better to set width property in css
No description provided.