Skip to content

Add button for Teamtailor #6

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37 changes: 27 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@
margin: 0;
box-sizing: border-box;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);


}

body {
Expand Down Expand Up @@ -208,10 +206,6 @@
right: auto;
}

.desktop-only {
display: none;
}

.a-nonymous {
display: block;
}
Expand All @@ -223,6 +217,25 @@
position: relative;
}
}

.btn {
background: #F1EF1F;
color: black;
text-shadow: none;
display: table;
margin: 2em auto;
padding: 1em 3em;
font-size: 1.2em;
opacity: .90;
transition: opacity .2s;
border-radius: 3em;
letter-spacing: .03em;
}

.btn:hover {
text-decoration: none;
opacity: 1;
}
</style>
</head>

Expand Down Expand Up @@ -250,14 +263,18 @@
For more than a decade, we have helped startups and incumbents grow like crazy by using our
carefully balanced blend of digital strategy, software engineering and open source software.
</p>

<p>
Tell us your big idea and we will help you refine it, build it and bring it to market.
<a href="mailto:[email protected]">Challenge us.</a>
</p>

<p>
Oh and we love Django too! <a href="mailto:[email protected]">Join us.</a>
We are always looking for talented people to join our team. Check out our job
openings in Stockholm and Gothenburg or send us a spontaneous application.
</p>

<a href="https://jobs.5monkeys.se/" title="Careers" class="btn">Join the team!</a>
</section>

<strong class="logo-garden--header">Some of our clients</strong>
Expand Down Expand Up @@ -457,8 +474,8 @@ <h3>Göteborg</h3>
</div>
<div>
<h3>Email us</h3>
<a alt="work with us" href="mailto:[email protected]">[email protected]</a>
<a alt="join our team" href="mailto:[email protected]">[email protected]</a>
<a title="Work with us" href="mailto:[email protected]">[email protected]</a>
<a title="Join our team" href="mailto:[email protected]">[email protected]</a>
</div>
</div>
</footer>
Expand Down Expand Up @@ -595,7 +612,7 @@ <h3>Email us</h3>
if (settings.friction !== 0) {
p.vx = p.vx > 0 ? p.vx - settings.friction : p.vx;
p.vy = p.vy > 0 ? p.vy - settings.friction : p.vy;

}

if (settings.turbulence !== 0) {
Expand Down