-
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
Training #1
base: develop
Are you sure you want to change the base?
Conversation
home.html
Outdated
@@ -8,9 +8,15 @@ | |||
<img height="90" width="270" src="https://argildx.com/wp-content/uploads/2017/05/final-logo-wdspace-300x98.png" alt="Argil DX"> | |||
</a> | |||
</span> | |||
<div class="divNavigation"> | |||
<a class="btnNavigate" href="#divHome">Home</a> |
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.
Never use camel casing. Only use hyphenated classes.
home.html
Outdated
</div> | ||
</div> | ||
<div class="main"> | ||
<div class="main" id="divHome"> |
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.
Do not over use ID
home.html
Outdated
@@ -55,7 +61,7 @@ <h2 class="centre">Services</h2> | |||
</ul> | |||
<br> | |||
</div> | |||
<div class="divWhoWeAre"> | |||
<div class="divWhoWeAre" id="divWhoWeAre"> |
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.
ID should not be camel case.
style.scss
Outdated
float: right; | ||
|
||
.btnNavigate{ | ||
color: #55606e; |
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.
Put colors in separate colors.scss file.
style.scss
Outdated
.btnNavigate{ | ||
color: #55606e; | ||
padding: 0 10px; | ||
height: 88px; |
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.
Use only rem as a unit.
home.html
Outdated
<img src="https://argildx.com/wp-content/uploads/2017/10/solution-partner.jpg" alt="" title="solution-partner" itemprop="thumbnailUrl"> | ||
</div> | ||
</div> | ||
<div id="services" class="divServices"> | ||
<div id="services" class="div-services"> | ||
<h2 class="centre">Services</h2> | ||
<ul class="servicesUl"> | ||
<li> |
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.
Why is the li without class?
home.html
Outdated
@@ -71,7 +77,7 @@ <h2 class="centre"> | |||
</p> | |||
</div> | |||
<div class="centre"> | |||
<input type="button" class="btnLearn" value="Learn more about us" /> | |||
<input type="button" class="btn-learn" value="Learn more about us" /> | |||
</div> | |||
<br> |
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.
Never use BR
_colors.scss
Outdated
@@ -0,0 +1,8 @@ | |||
$primary-color: #ffffff; |
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.
$white-color
_variable.scss
Outdated
@@ -0,0 +1,2 @@ | |||
$padding: 0.375rem; |
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.
$padding-paragraph
_variable.scss
Outdated
@@ -0,0 +1,2 @@ | |||
$padding: 0.375rem; | |||
$font: 'Open Sans','HelveticaNeue','Helvetica Neue',Helvetica,Arial; |
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.
$open-sans-font:
home.html
Outdated
@@ -2,61 +2,65 @@ | |||
<script src="home.js"></script> | |||
<div class="body"> | |||
<div class="header"> | |||
<div class=innerHeader> | |||
<div class=inner-header> | |||
<span class="logo"> | |||
<a href="/"> |
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.
class?
home.html
Outdated
@@ -2,61 +2,65 @@ | |||
<script src="home.js"></script> | |||
<div class="body"> | |||
<div class="header"> | |||
<div class=innerHeader> | |||
<div class=inner-header> | |||
<span class="logo"> | |||
<a href="/"> | |||
<img height="90" width="270" src="https://argildx.com/wp-content/uploads/2017/05/final-logo-wdspace-300x98.png" alt="Argil DX"> |
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.
Class?
home.html
Outdated
<span class="logo"> | ||
<a href="/"> | ||
<img height="90" width="270" src="https://argildx.com/wp-content/uploads/2017/05/final-logo-wdspace-300x98.png" alt="Argil DX"> | ||
</a> | ||
</span> | ||
<div class="div-navigation"> |
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.
class= navigation
Navigation buttons added