JSFiddle - React, Tailwind, and code Playground

by Chase Wilson

HTML

<div id="top">
    <nav id="navbar">
        <ul>
            <li>+You</li>
            <li>Gmail</li>
            <li>Images</li>
            <li>
                <img src="img/grid.png" />
            </li>
            <li>
                <div id="signin">SIGN IN</div>
            </li>
         </ul>
     </nav>
</div>
<div id="belly">
    <img id="logo" src="img/logo.png">
    <input type="text" id="input">
    <div class="button">	<a href="https://www.google.com/search?q=thumbs+up&tbm=isch&tbo=u&source=univ&sa=X&ei=TrVNUqnjHuTWiALu1IGgCA&sqi=2&ved=0CCkQsAQ&biw=1011&bih=499&dpr=1">
			Google Search</a>

    </div>
    <div class="button">	<a href="http://i.dailymail.co.uk/i/pix/2009/02/18/article-0-038D4403000005DC-286_468x376.jpg">
			I'm Feeling Lucky</a>

    </div>
</div>
<nav id="footer">
    <ul>
        <li class="a">Advertising</li>
        <li class="b">Business</li>
        <li class="c">About</li>
        <li class="d">Privacy &amp; Terms</li>
        <li class="e">Settings</li>
    </ul>
</nav>

CSS

/*How do I get the search bar to change color when hover?  input:hover{border-color: blue;} */
 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
 article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content:'';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
li {
    display: inline-block;
    margin: 10px;
    font-family: Arial, sans-serif;
}
#belly {
    clear:both;
}
#logo {
    position: relative;
    top: 200px;
    left: 758px;
    height: 90px;
}
#input {
    position: relative;
    top: 225px;
    left: 324px;
    border-top: 25px;
    width: 580px;
    height: 22px;
    border: 1px solid #CDCDCD;
}
#input input[type="submit"]:hover {
    border: 1px solid #999;
    color:red;
}
.button {
    position: relative;
    font-family: Arial, sans-serif;
    border: solid 1px #dcdcdc;
    font-size: 11px;
    font-weight: bold;
    display: inline-block;
    top:262px;
    left:-81px;
    text-decoration: none;
    padding: 10px;
    margin-right: 15px;
}
a {
    text-decoration: none;
    font-color: black;
}
ul {
    float: right;
    clear: both;
    position: absolute;
}
#signin {
    border-radius: 2px;
  ...