Skip to content

Instantly share code, notes, and snippets.

@CatherineThompson
Created August 21, 2019 03:39
Show Gist options
  • Save CatherineThompson/c18e8bfc044cbfcb556ca947adc99ded to your computer and use it in GitHub Desktop.
Save CatherineThompson/c18e8bfc044cbfcb556ca947adc99ded to your computer and use it in GitHub Desktop.
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
.flash {
animation: flashRed 2000ms ease-out;
}
@keyframes flashRed {
0% {
background-color: #f8bbd0;
}
99% {
background-color: #ffffff;
}
100% {
background-color: transparent;
}
}
.basket {
display: flex;
}
.foodItem {
flex: 1;
margin: 20px;
padding: 40px;
text-align: center;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment