diff --git a/app/styles/app/modules/sync-button.sass b/app/styles/app/modules/sync-button.sass index 551c23ed..22f987a7 100644 --- a/app/styles/app/modules/sync-button.sass +++ b/app/styles/app/modules/sync-button.sass @@ -16,8 +16,9 @@ background-color: $oxide-blue .sync-last position: absolute - left: -15em + right: 9em top: 0 + width: 170% z-index: -1 transition: transform 150ms ease, opacity 250ms ease transform: translateX(80%) diff --git a/app/styles/app/pages/getting-started.sass b/app/styles/app/pages/getting-started.sass index 725e56a3..6392d530 100644 --- a/app/styles/app/pages/getting-started.sass +++ b/app/styles/app/pages/getting-started.sass @@ -3,18 +3,17 @@ max-width: 900px margin: auto h1 - color: #808080 + color: $cement-grey font-size: 36px margin-bottom: 1em font-weight: 300 line-height: 1.1 h2 - color: #35a764 + color: $turf-green font-size: 22px margin-bottom: 1em font-weight: 300 p, li - color: #666 font-size: $font-size-m line-height: 25px @@ -76,10 +75,3 @@ strong text-transform: uppercase font-style: normal - -.note--info - background-color: #e7eeee - color: #3e8987 - code - color: #267c8d - background-color: white diff --git a/app/templates/account.hbs b/app/templates/account.hbs index b1f83d6c..6a1da777 100644 --- a/app/templates/account.hbs +++ b/app/templates/account.hbs @@ -1,6 +1,7 @@ {{#if allHooks.isLoaded}} -
+
+ {{#unless config.enterprise}} {{#if config.billingEndpoint}}
{{#if subscribeButtonInfo.subscribed}} @@ -14,6 +15,7 @@ {{/if}}
{{/if}} + {{/unless}}

{{accountName}}

diff --git a/app/templates/components/team-member.hbs b/app/templates/components/team-member.hbs index f18e3a7d..e558a781 100644 --- a/app/templates/components/team-member.hbs +++ b/app/templates/components/team-member.hbs @@ -1,6 +1,6 @@
- - + {{member.name}} + {{member.name}} gif

{{member.name}}

{{member.title}}

@@ -8,7 +8,7 @@

@{{member.handle}}

{{/if}}
- flag {{member.nationality}} + flag {{member.nationality}} / - flag {{member.country}} + flag {{member.country}}
diff --git a/app/templates/getting-started.hbs b/app/templates/getting-started.hbs index 76b8a599..d4a7cecb 100644 --- a/app/templates/getting-started.hbs +++ b/app/templates/getting-started.hbs @@ -22,9 +22,6 @@

Add .travis.yml file to your repository

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.

If .travis.yml is not in the repository, is misspelled or is not valid YAML, Travis CI will ignore it.

-

- Note: The language value is case-sensitive. If you set language: C, for example, your project will be considered a Ruby project. -

Here you can find some of our basic language examples.