Skip to content

Instantly share code, notes, and snippets.

@talsafran
Created December 9, 2011 22:15
Show Gist options
  • Save talsafran/1453552 to your computer and use it in GitHub Desktop.
Save talsafran/1453552 to your computer and use it in GitHub Desktop.
CSS code from Hursh and Tal
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