remove case sensitive notice from getting started

This commit is contained in:
lislis 2016-04-14 15:24:12 +02:00
parent 446a9bc9b1
commit 249deb0eff
2 changed files with 2 additions and 13 deletions

View File

@ -3,18 +3,17 @@
max-width: 900px max-width: 900px
margin: auto margin: auto
h1 h1
color: #808080 color: $cement-grey
font-size: 36px font-size: 36px
margin-bottom: 1em margin-bottom: 1em
font-weight: 300 font-weight: 300
line-height: 1.1 line-height: 1.1
h2 h2
color: #35a764 color: $turf-green
font-size: 22px font-size: 22px
margin-bottom: 1em margin-bottom: 1em
font-weight: 300 font-weight: 300
p, li p, li
color: #666
font-size: $font-size-m font-size: $font-size-m
line-height: 25px line-height: 25px
@ -76,10 +75,3 @@
strong strong
text-transform: uppercase text-transform: uppercase
font-style: normal font-style: normal
.note--info
background-color: #e7eeee
color: #3e8987
code
color: #267c8d
background-color: white

View File

@ -22,9 +22,6 @@
<h2>Add .travis.yml file to your repository</h2> <h2>Add .travis.yml file to your repository</h2>
<p>In order for Travis CI to build your project, you need to tell the systems a little bit about it. You'll need to add a file named .travis.yml to the root of your repository.</p> <p>In order for Travis CI to build your project, you need to tell the systems a little bit about it. You'll need to add a file named .travis.yml to the root of your repository.</p>
<p>If .travis.yml is not in the repository, is misspelled or is not valid YAML, Travis CI will ignore it.</p> <p>If .travis.yml is not in the repository, is misspelled or is not valid YAML, Travis CI will ignore it.</p>
<p class="note note--info">
<strong>Note:</strong> The <code>language</code> value is case-sensitive. If you set <code>language: C</code>, for example, your project will be considered a Ruby project.
</p>
<p>Here you can find some of our basic <a href="http://docs.travis-ci.com/user/language-specific/" title="">language examples</a>.</p> <p>Here you can find some of our basic <a href="http://docs.travis-ci.com/user/language-specific/" title="">language examples</a>.</p>
</div> </div>
</li> </li>