🎉 Initial commit

This commit is contained in:
Joshua Seigler 2017-08-22 22:07:36 -04:00 committed by Joshua Seigler
commit a4ed228a65
8 changed files with 7046 additions and 0 deletions

41
style.css Normal file
View file

@ -0,0 +1,41 @@
html, body {
margin: 0;
padding: 0;
}
body {
display: flex;
flex-direction: column;
justify-contents: center;
align-items: center;
min-height: 100vh;
}
.confetti {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 1;
pointer-events: none;
}
.confetti > canvas {
height: 100%;
width: 100%;
}
main {
margin: auto;
width: 50%;
max-width: 80vmin;
}
.logo {
text-indent: -100vw;
overflow: hidden;
background-image: url(logo.svg);
padding-top: 100%;
line-height: 0;
}