Difference between revisions of "Team:CU Boulder/notebook"
(Created page with "{{CU_Boulder}} <html lang="en"> <head> </head> <body> <!-- Content goes between the article tags --> <article> <h1>Notebook</h1> </article> </body> </html> {{CU_Boulder_f...") |
|||
Line 2: | Line 2: | ||
<html lang="en"> | <html lang="en"> | ||
<head> | <head> | ||
+ | <style> | ||
+ | |||
+ | #notebook { | ||
+ | height: 450px; | ||
+ | background-color: #989898; | ||
+ | } | ||
+ | .notebook_container { | ||
+ | width: 800px; | ||
+ | height: 500px; | ||
+ | /*border: 2px solid purple;*/ | ||
+ | /*padding-left: 40px;*/ | ||
+ | margin-left: auto; | ||
+ | margin-right: auto; | ||
+ | padding-top: 50px; | ||
+ | } | ||
+ | .notebook_box { | ||
+ | height: 300px; | ||
+ | width: 240px; | ||
+ | vertical-align: middle; | ||
+ | margin-left: 10px; | ||
+ | margin-right: 10px; | ||
+ | background-color: blue; | ||
+ | /*border: 2px solid red;*/ | ||
+ | float: left; | ||
+ | |||
+ | } | ||
+ | #nav_measure { | ||
+ | float: left; | ||
+ | } | ||
+ | #nav_notes { | ||
+ | float: left; | ||
+ | } | ||
+ | #nav_protocol { | ||
+ | float: right; | ||
+ | } | ||
+ | #nav_safety { | ||
+ | float: right; | ||
+ | } | ||
+ | |||
+ | </style> | ||
</head> | </head> | ||
<body> | <body> | ||
Line 8: | Line 48: | ||
<h1>Notebook</h1> | <h1>Notebook</h1> | ||
+ | <div class="notebook_container"> | ||
+ | <div class="notebook" id="nav_measure"> | ||
+ | <h2>Measurement Study</h2> | ||
+ | </div> | ||
+ | <div class="notebook" id="nav_notes"> | ||
+ | <h2>Notebooks</h2> | ||
+ | </div> | ||
+ | |||
+ | </div> | ||
+ | |||
+ | <div class="notebook_container"> | ||
+ | <div class="notebook" id="nav_protocol"> | ||
+ | <h2>Protocols</h2> | ||
+ | </div> | ||
+ | <div class="notebook" id="nav_safety"> | ||
+ | <h2>Safety</h2> | ||
+ | </div> | ||
+ | </div> | ||
Revision as of 09:03, 15 September 2015
<!DOCTYPE html>