Created
August 21, 2019 03:39
-
-
Save CatherineThompson/c18e8bfc044cbfcb556ca947adc99ded to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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