newton
Version:
A playful, particle-based physics engine designed from the ground up for JavaScript.
77 lines (66 loc) • 1.07 kB
CSS
* {
box-sizing: border-box;
}
body {
font-family:'Roboto', helvetica, arial, sans-serif;
font-weight: 300;
}
.Landing {
background: #fff;
color: #333;
}
.Hero {
max-width: 550px;
margin: 50px auto 0 auto;
text-align: center;
position: relative;
z-index: 50;
overflow: hidden;
padding-bottom: 30px;
}
@media only screen and (min-height : 550px) {
.Hero {
margin: 200px auto 0 auto;
}
}
.Hero-logo {
color: #000;
font-family:'Poiret One';
font-size: 72px;
padding: 0;
margin: 0;
}
.Hero-subtitle {
font-size: 22px;
font-weight: 300;
line-height: 1.5;
margin: 20px 0;
}
.Button {
min-width: 180px;
background: #3199B6;
color: #fff;
display: inline-block;
padding: 20px 20px;
margin: 0 3px 8px 3px;
text-decoration: none;
border-radius: 1px;
box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}
.Fork {
position: absolute;
top: 0;
right: 0;
border: 0;
width: 149px;
height: 149px;
z-index: 100;
}
#Demo {
position: absolute;
left: 0;
top: 0;
right: 0;
height: 100%;
z-index: 0;
}