Created
December 9, 2011 22:15
-
-
Save talsafran/1453552 to your computer and use it in GitHub Desktop.
CSS code from Hursh and Tal
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 { | |
text-align: center; | |
} | |
#container { | |
font-family: arial; | |
margin-top: 200px; | |
} | |
#search-text { | |
padding: 6px; | |
font-size: 16px; | |
width: 500px; | |
margin-bottom: 10px; | |
border-style: solid; | |
border-width: 1px; | |
border-color: lightgray; | |
} | |
#search-button { | |
font-size: 12px; | |
font-weight: bold; | |
background-color: ghostwhite; | |
color: gray; | |
padding: 5px 10px; | |
border: solid 1px lightgray; | |
-webkit-transition: font-size .5s ease-in-out; | |
} | |
#search-button:hover { | |
color: red; | |
border-color: dodgerblue; | |
background-color: whitesmoke; | |
cursor: pointer; | |
font-size: 40px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment