001 Black&White
Created
April 4, 2016 08:00
-
-
Save gazhikaba/092ea55c0f0820e20b9039c2c225c095 to your computer and use it in GitHub Desktop.
Note of CSS
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
| .gz_textarea { | |
| font-family:consolas; | |
| border-color: black; | |
| border-width: 2px; | |
| border-radius: 10px; | |
| background-color: white; | |
| } | |
| .gz_textarea:focus{ | |
| outline: none; | |
| } | |
| .gz_button { | |
| font-family:consolas; | |
| border-color: black; | |
| border-width: 2px; | |
| border-radius: 5px; | |
| background-color: white; | |
| } | |
| .gz_button:focus{ | |
| outline: none; | |
| } | |
| .gz_button:hover { | |
| border-color: gray; | |
| background-color: gray; | |
| } | |
| .gz_button:active { | |
| border-color: black; | |
| background-color: black; | |
| color:white; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment