JSFiddle - React, Tailwind, and code Playground
HTML
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Foo</title>
<!-- CSS -->
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="main.css">
<!-- JavaScript -->
<script src="jquery-2.0.0.min.js"></script>
<script src="jquery.fullscreen-min.js"></script>
<script src="main.js"></script>
</head>
<body>
<div id="toolbar">
<ul>
<li>
<div class="draggable">
<input id="tb-btn-home" title="Home" type="button">
<p>Home</p>
</div>
</li>
<li>
<div class="draggable">
<input id="tb-btn-search" title="Search" type="button">
<p>Search</p>
</div>
</li>
<li>
<div class="draggable">
<input id="tb-btn-account" title="Account" type="button">
<p>Account</p>
</div>
</li>
<li>
<div class="draggable">
<input id="tb-btn-about" title="About" type="button">
<p>About</p>
</div>
</li>
</ul>
<div class="tb-separator"></div>
<ul>
<li>
<div class="draggable">
<input id="tb-btn-fullscreen" title="Enable fullscreen" type="button">
<p>Full screen</p>
</div>
</li>
</ul>
</div>
</body>
</html>
CSS
@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
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;
}
body
{
background-image: url(main-bkg-2.jpg);
font-family: arial;
}
#toolbar
{
position: fixed;
top: 0;
left: 0;
right: 0;
background-color: rgba(20, 20, 20, 0.5);
padding: 5px;
color: #DDD;
border-bottom: solid 1px #AAA;
}
#tb-logo,
#toolbar ul,
#toolbar .tb-separator,
#toolbar li
{
float:left;
}
#tb-logo
{
vertical-align: middle;
}
#toolbar li /* Button container */
{
padding: 1px;
background: #aaaaaa;
background:...