Last active
August 23, 2018 06:17
-
-
Save davidsaccavino/b3d564da0cc83142f9072c3e0f315688 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
.App { | |
text-align: center; | |
} | |
.App-logo { | |
animation: App-logo-spin infinite 5s linear; | |
height: 80px; | |
} | |
.App-header { | |
background-color: #222; | |
height: 75px; | |
padding: 20px; | |
color: white; | |
} | |
@keyframes App-logo-spin { | |
from { transform: rotate(0deg); } | |
to { transform: rotate(360deg); } | |
} | |
.TextField { | |
background: #eee; | |
width: 95%; | |
} | |
form { background: #000; padding: 3px; position: fixed; bottom: 0; width: 100%; } | |
#messages { list-style-type: none; margin: 0; padding: 0; } | |
#messages li { padding: 5px 10px; } | |
#messages li:nth-child(odd) { background: #eee; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment