Skip to content

Commit

Permalink
feat(website): add video and new content
Browse files Browse the repository at this point in the history
  • Loading branch information
fabienvauchelles committed Sep 30, 2018
1 parent f878bb8 commit cf0246e
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 6 deletions.
2 changes: 1 addition & 1 deletion docs/website/scss/_features.scss
@@ -1,5 +1,5 @@
#features {
background: $body-bg-alternate;
background: $body-bg;

.feature {
margin-top: 30px;
Expand Down
2 changes: 1 addition & 1 deletion docs/website/scss/_variables.scss
Expand Up @@ -16,7 +16,7 @@ $brand-primary: #00afec;
//$brand-primary: #4CAF50;
$brand-primary-dark: darken($brand-primary, 5%);
$body-bg: #fff;
$body-bg-alternate: #F9F9F9;
$body-bg-alternate: #F0F0F0;


// Fonts
Expand Down
14 changes: 14 additions & 0 deletions docs/website/scss/_video.scss
@@ -0,0 +1,14 @@
#videos {
background: $body-bg-alternate;

.video {
display: flex;
align-items: center;
justify-content: center;

iframe {
width: 560px;
height: 315px;
}
}
}
1 change: 1 addition & 0 deletions docs/website/scss/index.scss
Expand Up @@ -15,6 +15,7 @@
@import "form";
@import "navbar";
@import "jumbotron";
@import "video";
@import "features";
@import "stars";
@import "contribute";
Expand Down
20 changes: 16 additions & 4 deletions docs/website/src/index.html
Expand Up @@ -145,6 +145,18 @@
</section>


<!-- VIDEO -->
<section id="videos">
<div class="container">
<div class="row">
<div class="video col-sm-12">
<iframe src="https://www.youtube.com/embed/Cg9nkAYPSdY?rel=0" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
</div>
</div>
</section>


<!-- FEATURES -->
<section id="features">
<div class="container">
Expand All @@ -159,13 +171,13 @@ <h2>
</div>

<div class="feature-title">
Scalable
Short competition
</div>

<div class="feature-description">
<ul>
<li>Support thousands of users</li>
<li>In a short time</li>
<li>Realtime Leaderboard</li>
</ul>
</div>
</div>
Expand All @@ -182,7 +194,7 @@ <h2>
<div class="feature-description">
<ul>
<li>Deploy with Docker</li>
<li>Authentification with Auth0</li>
<li>Authentificate with Auth0</li>
</ul>
</div>
</div>
Expand All @@ -199,7 +211,7 @@ <h2>
<div class="feature-description">
<ul>
<li>Submit from your Notebook</li>
<li>No file transfer problem</li>
<li>No more file transfer problem</li>
</ul>
</div>
</div>
Expand Down

0 comments on commit cf0246e

Please sign in to comment.