JSFiddle - React, Tailwind, and code Playground

by kevinPHPkevin

HTML

<div id="naslov">
    <img src="image/Conto_logo.png" title="Conto Regis" alt="contologo" />
  </div>
  <div id="izbornik">
    <div id="home">
    </div>
  </div>

CSS

body {
    font-family:"Lucida Sans Unicode", "Lucida Grande", sans-serif;
    font-size:1.0em;
    font-weight:100;
    margin:0px;
    color:#000;
}
div#naslov {
    height: 128px;
    width: 100%;
    background: black;
    background-repeat: repeat-x;
}
div#naslov > img {
    cursor:pointer;
    height: 80px;
    margin:20px 0px 0px 20px;
}
div#izbornik {
    width:100%;
    height: 45px;
    background: red;
    background-repeat: repeat-x;
    border: thin solid red;
}
#home{
    height:27px;
    width:28px;
    margin-top:8px;
    border:#000 1px dashed;
}