diff --git a/app/styles/app/layouts/getting-started.sass b/app/styles/app/layouts/getting-started.sass index b5e4613c..13d142d3 100644 --- a/app/styles/app/layouts/getting-started.sass +++ b/app/styles/app/layouts/getting-started.sass @@ -1,10 +1,14 @@ - .getting-started + + max-width: 900px + margin: auto + h1 color: #808080 font-size: 35px margin-bottom: 1em font-weight: 400 + line-height: 1.1 h2 color: #35a764 @@ -12,6 +16,17 @@ margin-bottom: 1em font-weight: 400 + a + color: #5aa4a3 + font-weight: 600 + &:hover + text-decoration: underline + + p, li + color: #828b8b + font-size: $font-size-m + line-height: 25px + .getting-started-steps @include resetul @@ -36,7 +51,41 @@ h2:before content: "3" + > li + margin-bottom: 5rem + ul + @include resetul + li + padding-left: .9em + &:before + content: "\2022" + display: inline-block + margin-right: .3em + margin-left: -.7em + font-size: 20px .note + padding: .4em .5em + font-size: $font-size-m + @extend %border-radius-4px + font-style: italic + code + display: inline-block + margin: 0 0 0 .3em + padding: 0em 0.4em + border: 1px solid + border-radius: 3px + font-family: monaco + font-size: 11px + font-style: normal + line-height: 1.7 + strong + text-transform: uppercase + font-style: normal -.note--info \ No newline at end of file +.note--info + background-color: #e7eeee + color: #3e8987 + code + color: #267c8d + background-color: $white diff --git a/app/styles/app/modules/media.sass b/app/styles/app/modules/media.sass index 1f0ae843..5daf7841 100644 --- a/app/styles/app/modules/media.sass +++ b/app/styles/app/modules/media.sass @@ -7,9 +7,11 @@ .media-elem float: left margin-right: 0 - img - display: block .media-body float: right - margin-left: 0 \ No newline at end of file + margin-left: 0 + +.media--right + .media-elem + float: right diff --git a/app/templates/getting-started.hbs b/app/templates/getting-started.hbs index f11cc51e..99b12a04 100644 --- a/app/templates/getting-started.hbs +++ b/app/templates/getting-started.hbs @@ -5,7 +5,7 @@ <ol class="getting-started-steps"> <li class="media row"> <div class="media-elem column medium-3"> - <img src="http://placehold.it/228x228" alt=""> + <img src="/images/getting-started/step-1.png" alt="" width="234" height="234"> </div> <div class="media-body column medium-9"> <h2>Activate GitHub Repositories</h2> @@ -16,7 +16,7 @@ </li> <li class="media media--right row"> <div class="media-elem column medium-3"> - <img src="http://placehold.it/228x228" alt=""> + <img src="/images/getting-started/step-2.png" alt="" width="234" height="234"> </div> <div class="media-body column medium-9"> <h2>Add .travis.yml file to your repository</h2> @@ -30,7 +30,7 @@ </li> <li class="media row"> <div class="media-elem column medium-3"> - <img src="http://placehold.it/228x228" alt=""> + <img src="/images/getting-started/step-3.png" alt="" width="234" height="234"> </div> <div class="media-body column medium-9"> <h2>Trigger your first build with a git push</h2> diff --git a/public/images/getting-started/step-1.png b/public/images/getting-started/step-1.png new file mode 100644 index 00000000..6034f77c Binary files /dev/null and b/public/images/getting-started/step-1.png differ diff --git a/public/images/getting-started/step-2.png b/public/images/getting-started/step-2.png new file mode 100644 index 00000000..496f3191 Binary files /dev/null and b/public/images/getting-started/step-2.png differ diff --git a/public/images/getting-started/step-3.png b/public/images/getting-started/step-3.png new file mode 100644 index 00000000..8e6077b2 Binary files /dev/null and b/public/images/getting-started/step-3.png differ