diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2011-04-01 13:36:09 +0300 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2011-04-01 13:36:09 +0300 |
| commit | 8d5e6fb1d991ce21a5632a7c7f6154095f456efa (patch) | |
| tree | b65d388e80ddc5e98389df74a51a1e9f9f1d20b5 /blueprint-layouts/layout1.html | |
| parent | 94b2bb3c51b1687c0a4a74348d0f81c180ceba17 (diff) | |
added layout1 basics
Diffstat (limited to 'blueprint-layouts/layout1.html')
| -rw-r--r-- | blueprint-layouts/layout1.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/blueprint-layouts/layout1.html b/blueprint-layouts/layout1.html new file mode 100644 index 0000000..25507b1 --- /dev/null +++ b/blueprint-layouts/layout1.html @@ -0,0 +1,20 @@ +<!doctype html> +<html> + <head> + <title>Blueprint Layout 1</title> + <link rel="stylesheet" href="screen.css" type="text/css" media="screen, projection"> + <link rel="stylesheet" href="print.css" type="text/css" media="print"> + <!--[if lt IE 8]><link rel="stylesheet" href="ie.css" type="text/css" media="screen, projection"><![endif]--> + <style> + .top-margin { margin-top: 20px; } + div.box { background-color: #ddd; height: 100px; padding: 10px;} + </style> +</head> + <body> + <div class="container top-margin"> + <div id="title" class="box span-24 last"> + <h1>Title</h1> + </div> + </div> + </body> +</html> |
