Skip to content

Instantly share code, notes, and snippets.

@damilolaolatunji
Created February 3, 2021 14:49
Show Gist options
  • Save damilolaolatunji/2b44f3204a4d414db5a715601ce2bfc9 to your computer and use it in GitHub Desktop.
Save damilolaolatunji/2b44f3204a4d414db5a715601ce2bfc9 to your computer and use it in GitHub Desktop.
html {
box-sizing: border-box;
}
*, *::before, *::after {
margin: 0;
padding: 0;
box-sizing: inherit;
}
body {
background: #ffffff;
font-family: 'Lato', sans-serif;
transition: background 0.3s;
}
.container {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
letter-spacing: 0.1em;
height: 100vh;
width: 100vw;
}
button {
height: 4em;
width: 180px;
padding: 1.5em auto;
margin: 1em auto;
background-color: #FEB1C0;
border: none;
border-radius: 3px;
text-transform: uppercase;
letter-spacing: 0.5em;
transition: all 0.2s cubic-bezier(.4,0,.2,1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment