minor changes

This commit is contained in:
andmironov 2018-05-08 01:44:32 +03:00
parent c810e3f0e9
commit 08c756e43e
4 changed files with 28 additions and 10 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -47,12 +47,13 @@
<h3>Opportunity</h3>
<p>Although still in its infancy, blockchain technology is developing rapidly and is poised to have a profound impact on our social, financial and legal systems. By joining us, youll help to craft the way people interact with these technologies.</p>
<p>This is a non-trivial challenge as we should not only make an easy-to-use app and create a seamless user experience, but use the interface as a way to explain how a decentralised system will benefit people. We are a tight-knit team, where designers are welcome to take part in the identification of the problems, the prioritisation of which of those problems are most important to solve. </p>
</div>
<h3 class="terms-header">Job Description</h3>
<div class="terms">
<h6>Requirements</h6>
<ul>
<li>3+ years of experience</li>
<li>Experience in building digital products, proven by your great portfolio;</li>
<li>Fluent English</li>
<li>Great communication skills</li>
<li>Self-starter who can collaborate</li>
@ -66,7 +67,7 @@
<li>Modern design stack: Sketch, Figma, Invision, Framer, Principle, Zeplin</li>
<li>A love for making things beautiful, usable and elegant</li>
<li>Strong hands-on work attitude</li>
<li>Living in CET ± 2h</li>
<li>(Preferably) Living in CET ± 2h</li>
</ul>
<h6>Nice to have</h6>
@ -160,6 +161,8 @@
<h3>Opportunity</h3>
<p>Although still in its infancy, blockchain technology is developing rapidly and is poised to have a profound impact on our social, financial and legal systems. By joining us, youll help to craft the way people interact with these technologies.</p>
<p>We are looking for someone who is excited by the impact blockchains will have upon society and is eager to help tell the story of Status. As Brand Designer, you will help visualize the story Status is trying to tell and the incredible potential through the visual language of the brand.</p>
<p>You will help define a visual design system than is both globally recognizable and flexible to support various company initiatives and products. You are excited by the latest design trends and are constantly looking to push the boundaries of visual language. You are looking to leverage core consumer insights to effectively communicate the benefits of Status to the world.</p>
</div>
<h3 class="terms-header">Job Description</h3>
<div class="terms">
@ -211,6 +214,7 @@
<h3>Opportunity</h3>
<p>Although still in its infancy, blockchain technology is developing rapidly and is poised to have a profound impact on our social, financial and legal systems. By joining us, youll help to craft the way people interact with these technologies.</p>
<p>We are looking for someone who is excited by the impact blockchains will have upon society and is eager to help tell the story of Status. As Brand Designer, you will help visualize the story Status is trying to tell and the incredible potential through the visual language of the brand. You are excited by the latest design trends and are constantly looking to push the boundaries of visual language. You are looking to leverage core consumer insights to effectively communicate the benefits of Status to the world.</p>
</div>
<h3 class="terms-header">Job Description</h3>
<div class="terms">
@ -277,7 +281,7 @@
<div class="home-wrap">
<div class="sections">
<div class="inner-header">
<h2>How do we work</h2>
<h2>How We Work</h2>
<p>We work in an unconventional way, and were always trying to improve it maintaining a high level of autonomy and build on meritocracy.</p>
</div>
<div class="section section--odd section--one">
@ -420,7 +424,7 @@
</div>
<div class="section-header section-header--positions">
<h2>Join us</h2>
<h2>Join Us</h2>
<p>Were looking for talented and passionate individuals to join our team. Take a look at the latest open roles.</p>
</div>
@ -465,7 +469,7 @@
<div class="positions-arrow"></div>
<div class="positions-item-top">
<h2>Brand Design Lead</h2>
<p>Store, send & receive Eth and ERC-20 tokens with Status Hardwallet</p>
<p>We are looking for someone who is excited by the impact blockchains will have upon society and is eager to help tell the story of Status</p>
</div>
<div class="reward">
<div class="reward-amount">

View File

@ -25044,6 +25044,20 @@ let sectionPositions = document.querySelectorAll(".section-header--positions")[0
let sectionPeople = document.querySelectorAll(".section-header--people")[0];
let sectionBlog = document.querySelectorAll(".section-header--blog")[0];
/* Demo Scroll */
// setTimeout(function(){
// animateScroll(1400, 5000, "easeInOutCubic", 0, null, animateBack)
// }, 12000)
//
// function animateBack() {
// setTimeout(function(){
// console.log("hi");
// animateScroll(-1398, 2000, "easeInOutCubic", 0)
// }, 100)
// }
if (buttonPositions) {
buttonPositions.addEventListener('click', function (event) {
animateScroll(sectionPositions, 1800, "easeInOutCubic", 0);
@ -25206,9 +25220,9 @@ let selection = circles.selectAll("circle").data(nodes).enter().append("circle")
window.circles = circles;
var simulation = d3.forceSimulation(nodes).alphaDecay(0).alpha(0.42) // Play with me (total speed)
.force("charge", d3.forceCollide().radius(d => d.radius * 1.1)).force("x", d3.forceX(d => d.originX).strength(0.08)) // Play with me (force for target position)
.force("y", d3.forceY(d => d.originY).strength(0.08)) // Play with me (force for target position)
var simulation = d3.forceSimulation(nodes).alphaDecay(0).alpha(0.62) // Play with me (total speed)
.force("charge", d3.forceCollide().radius(d => d.radius * 1.1)).force("x", d3.forceX(d => d.originX).strength(0.084)) // Play with me (force for target position)
.force("y", d3.forceY(d => d.originY).strength(0.084)) // Play with me (force for target position)
.on("tick", ticked).stop();
function dragged(d) {

File diff suppressed because one or more lines are too long