Skip to content

Instantly share code, notes, and snippets.

@seanwoods
Created April 4, 2015 16:50
Show Gist options
  • Save seanwoods/89fafc5028d514407950 to your computer and use it in GitHub Desktop.
Save seanwoods/89fafc5028d514407950 to your computer and use it in GitHub Desktop.
Test FlexGrid
<!DOCTYPE html>
<html class="no-js">
<head>
<meta charset="UTF-8"/>
<title>Test Flexgrid Page</title>
<link href="normalize.css" rel="stylesheet"/>
<link href="flexgrid.css" rel="stylesheet"/>
<script src="modernizr.js"></script>
<style>
body {
font-family: DejaVu Sans, Lucida Grande, Calibri, Verdana, sans-serif;
}
#navbar {
background:#eaeaea linear-gradient(#fafafa, #eaeaea) repeat-x;
padding: 10px 0 10px 0;
width: 100%;
}
#navbar ul {
list-style: none;
margin: 0;
padding: 0;
}
#navbar ul li {
display: inline;
margin: 0;
padding: 0px 15px 0px 15px;
}
#navbar ul li a {
color: #000;
font-weight: bold;
text-decoration: none;
}
#login {
}
</style>
<meta name="viewport" content="width=device-width"/>
</head>
<body>
<div id="navbar">
<div class="container">
<div class="row">
<div class="span9">
<ul>
<li><a href="/namespaces">Namespaces</a></li>
<li><a href="/partitions">Partitions</a></li>
<li><a href="/namespaces">Routines</a></li>
<li><a href="/globals">Globals</a></li>
<li><a href="/users">Users</a></li>
</ul>
</div>
<div class="span3 pull-right" id="login">
Login
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="span4">
The quick brown fox...
</div>
<div class="span4">
The slow silver fox...
</div>
</div>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment