Skip to content

Instantly share code, notes, and snippets.

@jnf
Created September 16, 2016 22:15
Show Gist options
  • Select an option

  • Save jnf/9bd2ad6f7f6edb521bb46a2af006a700 to your computer and use it in GitHub Desktop.

Select an option

Save jnf/9bd2ad6f7f6edb521bb46a2af006a700 to your computer and use it in GitHub Desktop.
html {
font: normal normal 32px/1 "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
background: #111;
}
#shapes {
background: rgb(255, 0, 255);
width: 30vmin;
height: 30vmin;
margin: 35vmin auto 0 auto;
position: relative;
transition: all 1.5s ease-in-out;
}
#shapes:after,
#shapes:before {
background: rgb(255, 255, 0);
border-radius: 50%;
content: "";
display: block;
width: 30vmin;
height: 30vmin;
position: absolute;
left: -15vmin;
top: -15vmin;
transition: all 1.5s ease-in-out;
}
#shapes:after {
background: rgb(0, 255, 255);
left: 15vmin;
}
#shapes.together {
transform: rotate(45deg);
}
#shapes.together:before {
background: rgb(255, 0, 255);
left: 0vmin;
top: -15vmin;
}
#shapes.together:after {
background: rgb(255, 0, 255);
left: -15vmin;
top: 0;
}
<html>
<head>
<title>Imma miss yinz</title>
<link rel="stylesheet" media="all" href="index.css">
</head>
<body>
<div id="shapes"></div>
</body>
</html>

Together

Your greatest asset is the bond you build with others. You will spend so much more of your life remembering your time at Ada than you will experiencing time at Ada.

You will take away many things from this experience. Most good, some bad. Cynthia said it yesterday and I am reiterating it for you now: the most important thing you can take away from this experience is the bond with those around you. Technologies and jobs and projects will come and go; only the people those efforts serve matter. Cherish your networks not for the job opportunities they provide but for the joy those people bring to your life.

I apologize for being a little preachy today. It's my last day and I'm feeling the dual weight of knowing I've made the right decision and that not making the decision any easier.

To keep things relevant, I want to teach you a little CSS. This is a bit more on the intermediate level of CSS, but I believe in your insight and thoughtfulness. Don't worry about copying any of the code I show you; it'll all be online for you later.

document.getElementById('shapes').className = 'together'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment