Difference between revisions of "Team:BostonU HW/CSS"

 
(280 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{Template:BUHW2016_Bootstrap}}
 
{{Template:BUHW2016_Bootstrap}}
 
 
<html>
 
<html>
 +
  
  
 
<head>
 
<head>
 
 
<script>
 
 
 
</script>
 
 
  
 
<style type="text/css">
 
<style type="text/css">
Line 29: Line 22:
  
  
 +
html,body
 +
{
 +
    width: 100%;
 +
    min-width: 100%;
 +
    height: 100%;
 +
    margin: 0px;
 +
    padding: 0px;
 +
    overflow-x: hidden;
 +
}
  
  
 +
body{
 +
background-color:black;
 +
}
  
 
* {
 
* {
Line 55: Line 60:
 
   .navbar-default .nav > li > a:focus {
 
   .navbar-default .nav > li > a:focus {
 
       color: white;
 
       color: white;
       font-size: small;
+
       font-size: medium;
 
   }
 
   }
 
   .navbar-default .nav > li > a:hover,
 
   .navbar-default .nav > li > a:hover,
 
   .navbar-default .nav > li > a:focus:hover {
 
   .navbar-default .nav > li > a:focus:hover {
 
       color: white;
 
       color: white;
       font-size: small;
+
       font-size: medium;
 
   }
 
   }
 
   .navbar-default.affix {
 
   .navbar-default.affix {
Line 71: Line 76:
  
 
.header {
 
.header {
    display: table;
+
    position: relative;
+
 
    width: 100%;
+
background: url('https://static.igem.org/mediawiki/2016/8/8b/T--BostonU_HW--NeptuneNASA_rcwolf.jpg') no-repeat center center fixed;  
    height: 750px;
+
  -webkit-background-size: cover;
    background: url('https://static.igem.org/mediawiki/2016/8/8b/T--BostonU_HW--NeptuneNASA_rcwolf.jpg') no-repeat center center scroll;
+
  -moz-background-size: cover;
    background-size: 100% 100%;
+
  -o-background-size: cover;
 +
  background-size: cover;
 +
 
  
 
}
 
}
Line 84: Line 91:
 
background: url("https://static.igem.org/mediawiki/2016/b/b7/T--BostonU_HW--MFBackground_rcwolf.png");
 
background: url("https://static.igem.org/mediawiki/2016/b/b7/T--BostonU_HW--MFBackground_rcwolf.png");
 
background-size: 100% 100%;
 
background-size: 100% 100%;
height: 750px;
+
height: 110%;
 
width: 100%;
 
width: 100%;
 
}
 
}
Line 106: Line 113:
  
 
.headerCaption {
 
.headerCaption {
font-size: 150%;
+
font-size: 130%;
font-weight: 700;
+
font-weight: 400;
line-height: 120%;
+
line-height: 130%;
 
}
 
}
  
Line 115: Line 122:
 
color: white;
 
color: white;
 
padding-top: 170px;
 
padding-top: 170px;
 +
}
 +
 +
.ourProjectText {
 +
    margin-top: 100px;
 +
    margin-bottom: 100px;
 +
    -webkit-box-shadow: 5px 5px 0px rgba(4, 4, 4, 0.3);
 +
    -moz-box-shadow:    5px 5px 0px rgba(4, 4, 4, 0.3);
 +
    box-shadow:        5px 5px 0px rgba(4, 4, 4, 0.3);
 +
}
 +
 +
.ourProjectTextBoarder {
 +
    margin: 80px;
 +
    padding:10px;
 +
 +
 +
}
 +
 +
.contactUs {
 +
position: relative;
 +
background-color: black;
 +
background-size: 100% 100%;
 +
height: 230px;
 +
width: 100%;
 +
}
 +
 +
.contactUsContent {
 +
margin-top: 70px;
 +
font-size: 25px;
 
}
 
}
  
Line 168: Line 203:
  
  
</style>
 
  
</head>
 
  
<body>
 
  
  
  
 +
/*  Animated Underlining For Menu Items  */
 +
.dropbtn {
 +
display: inline-block;
 +
position: relative;
 +
padding-bottom: 3px;
 +
}
 +
.dropbtn:after {
 +
content: '';
 +
display: block;
 +
margin: auto;
 +
height: 2px;
 +
width: 0px;
 +
background: transparent;
 +
transition: width .5s ease, background-color .5s ease;
 +
}
 +
.sliding-middle-out:hover > .dropbtn:after {
 +
width: 100%;
 +
background: white;
 +
}
  
  
  
  
 +
 +
/*  Dropdown Menu Functionality  */
 +
/* Style The Dropdown Button */
 +
.dropbtn {
 +
    color: white;
 +
    border: none;
 +
    cursor: pointer;
 +
}
 +
 +
/* The container <div> - needed to position the dropdown content */
 +
.dropdown {
 +
    position: relative;
 +
    display: inline-block;
 +
}
 +
 +
/* Dropdown Content (Hidden by Default) */
 +
.dropdown-content {
 +
    display: none;
 +
    position: absolute;
 +
    background-color: rgba(249,249,249,0.4);
 +
    min-width: 160px;
 +
}
 +
 +
/* Links inside the dropdown */
 +
.dropdown-content a {
 +
    color: black;
 +
    font-size: 15px;
 +
    padding: 10px 16px;
 +
    text-decoration: none;
 +
    display: block;
 +
}
 +
 +
/* Change color of dropdown links on hover */
 +
.dropdown-content a:hover {background-color: #f1f1f1}
 +
 +
/* Show the dropdown menu on hover */
 +
.dropdown:hover .dropdown-content {
 +
    display: block;
 +
}
 +
 +
 +
 +
 +
 +
 +
 +
 +
</style>
 +
 +
</head>
 +
 +
<body>
  
  
Line 203: Line 306:
  
 
     <!-- Collect the nav links, forms, and other content for toggling -->
 
     <!-- Collect the nav links, forms, and other content for toggling -->
     <div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
+
     <div class="collapse navbar-collapse " >
 
       <ul class="nav navbar-nav navbar-right">
 
       <ul class="nav navbar-nav navbar-right">
         <li><a href="#">TEAM</a></li>
+
         <li class="sliding-middle-out dropdown">
         <li><a href="#">PROJECT</a></li>
+
            <a href="#" class="dropbtn">TEAM</a>
         <li><a href="#">NOTEBOOK</a></li>
+
            <div class="dropdown-content">
         <li><a href="#">HUMAN PRACTICES</a></li>
+
                  <a href="https://2016.igem.org/Team:BostonU_HW/Team">Us</a>
         <li><a href="#">AWARDS</a></li>
+
                  <a href="https://2016.igem.org/Team:BostonU_HW/Attributions">Attributions</a>
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Collaborations">Collaborations</a>
 +
            </div>
 +
        </li>
 +
         <li class="sliding-middle-out dropdown">
 +
            <a href="#" class="dropbtn">PROJECT</a>
 +
            <div class="dropdown-content">
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Results">Results</a>
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Demonstrate">Project Build</a>
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Proof">Application</a>
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Design">Documentation</a>
 +
            </div>
 +
        </li>
 +
         <li class="sliding-middle-out dropdown">
 +
            <a href="#" class="dropbtn">NOTEBOOK</a>
 +
            <div class="dropdown-content">
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Notebook">Timeline</a>
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Experiments">Experiments</a>
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Safety">Safety</a>
 +
            </div>
 +
        </li>
 +
         <li class="sliding-middle-out dropdown">
 +
            <a href="https://2016.igem.org/Team:BostonU_HW/Human_Practices" class="dropbtn">HUMAN PRACTICES</a>
 +
            <div class="dropdown-content">
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/HP/Silver">Silver</a>
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/HP/Gold">Gold</a>
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Integrated_Practices">Integrated Practices</a>
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Engagement">Engagement</a>
 +
            </div>
 +
        </li>
 +
         <li class="sliding-middle-out dropdown">
 +
            <a href="#" class="dropbtn">AWARDS</a>
 +
            <div class="dropdown-content">
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Hardware">Hardware</a>
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Software">Software</a>
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Measurement">Measurement</a>
 +
                  <a href="https://2016.igem.org/Team:BostonU_HW/Model">Model</a>
 +
            </div>
 +
        </li>
 
       </ul>
 
       </ul>
 
     </div><!-- /.navbar-collapse -->
 
     </div><!-- /.navbar-collapse -->
Line 215: Line 356:
 
</nav>
 
</nav>
 
   
 
   
 +
  
  
Line 225: Line 367:
 
<div class="row"><br><br></div>   
 
<div class="row"><br><br></div>   
 
<div class="row">
 
<div class="row">
<button type="button" class="btn btn-primary">GET STARTED</button>
+
<a href="https://2016.igem.org/Team:BostonU_HW/Demonstrate" > <button type="button" class="btn btn-primary" id="down">GET STARTED</button></a>
 
</div>
 
</div>
 
</div>
 
</div>
 +
 +
<br><br><br><br><br><br><br><br><br><br>
 
    
 
    
 
</header>
 
</header>
  
  
<div class="container sectionPadding">
+
<div class="container sectionPadding" id="basics">
 
<div class="row">
 
<div class="row">
 
     <div class="col-md-1"></div>
 
     <div class="col-md-1"></div>
Line 282: Line 426:
  
  
 
+
<div class="row">
 
<div class="container ourProject">
 
<div class="container ourProject">
  
 +
<div class="container ourProjectText" style="background-color: white">
  
 +
<div class="ourProjectTextBoarder">
 +
<div style="text-align:center; font-size:31px;">OUR PROJECT</div>
 +
<br>
 +
Neptune is a specify, design, and build tool for the development of continuous flow microfluidics. With Neptune, users can specify microfluidic devices through a high level description of liquid flow relations. Our application will automatically place and route the design schematic of the microfluidic and, when used in conjunction with low cost and readily available CAD tools, a user can build their custom microfluidic system in-lab.
 +
<br><br>
 +
The Boston University 2016 iGem Hardware Team is encapsulating this entire workflow through a graphical user interface. Users can write files that specify the function of the microfluidic, preview and edit their microfluidic design generated by the application, use this application directly with CAD tools such as a CNC mill to fabricate their device, and physically control valves and ports on the microfluidic chip. The iGem team is also complementing this workflow by developing and releasing open source designs of our hardware, including parametric 3D print files and firmware for microcontrollers that actuate the microfluidic valves. Finally, the iGem team is also involved in the development of the place and route software that converts a high level description of liquid flow relations into a microfluidic netlist that can that be converted into a design schematic.
 +
</div>
 +
</div>
 +
</div>
 +
</div>
  
<img src="https://static.igem.org/mediawiki/2016/c/c0/T--BostonU_HW--homeProjectDiv.png" height="300" width="400">
+
 
 +
 
 +
 
 +
 
 +
 
 +
 
 +
 
 +
 
 +
 
 +
 
 +
 
 +
 
 +
 
 +
 
 +
 
 +
<style type="text/css">
 +
.imgNavBlock{
 +
background-color: #000000;
 +
padding-top: 100px;
 +
padding-bottom: 100px;
 +
 
 +
}
 +
.imgSquarePadding{
 +
background-color: #000000;
 +
height: 100px;
 +
}
 +
.imgSquare{
 +
background: url('https://static.igem.org/mediawiki/2016/0/02/T--BostonU_HW--chalkboardIconDownsized_rcwolf.png') no-repeat;
 +
    -webkit-background-size: 95% auto;
 +
    -moz-background-size: 95% auto;
 +
    -o-background-size: 95% auto;
 +
    background-size: 95% auto;
 +
    height: 280px; 
 +
}
 +
 
 +
.imgSquareOpenSource{
 +
  background: url('https://static.igem.org/mediawiki/2016/9/9b/T--BostonU_HW--openSourceSquareDownsized_rcwolf.jpg') no-repeat;
 +
    -webkit-background-size: 95% auto;
 +
    -moz-background-size: 95% auto;
 +
    -o-background-size: 95% auto;
 +
    background-size: 95% auto;
 +
    height: 280px; 
 +
}
 +
 
 +
.imgSquareOurTeam{
 +
  background: url('https://static.igem.org/mediawiki/2016/7/76/T--BostonU_HW--walkingTeamDownsized_rcwolf.png') no-repeat;
 +
    -webkit-background-size: 95% auto;
 +
    -moz-background-size: 95% auto;
 +
    -o-background-size: 95% auto;
 +
    background-size: 95% auto;
 +
    height: 280px; 
 +
}
 +
 
 +
.imgSquareTutorial{
 +
  background: url('https://static.igem.org/mediawiki/2016/7/72/T--BostonU_HW--tutorialTypingDownsized_rcwolf.png') no-repeat;
 +
    -webkit-background-size: 95% auto;
 +
    -moz-background-size: 95% auto;
 +
    -o-background-size: 95% auto;
 +
    background-size: 95% auto;
 +
    height: 280px; 
 +
}
 +
 
 +
 
 +
.navImg{
 +
max-width: 100%;
 +
margin: auto;
 +
opacity: 0.4;
 +
}
 +
.navBlockTxt{
 +
z-index: 100;
 +
color: white;
 +
font-size: 30px;
 +
text-align: center;
 +
line-height: 100px;
 +
}
 +
 
 +
.cubeHeight {
 +
  height: 280px;
 +
}
 +
.card-container {
 +
  height: 100%;
 +
  min-height: 100%;
 +
  perspective: 600;
 +
  position: relative;
 +
  max-width: 100%;
 +
}
 +
.card {
 +
  height: 100%;
 +
  /*position: absolute;*/
 +
  transform-style: preserve-3d;
 +
  transition: all 1s ease-in-out;
 +
}
 +
.card:hover {
 +
  transform: rotateY(180deg);
 +
}
 +
.card .side {
 +
  backface-visibility: hidden;
 +
  border-radius: 0px;
 +
  height: 100%;
 +
  position: absolute;
 +
  overflow: hidden;
 +
  width: 100%;
 +
}
 +
.card .back {
 +
  color: white;
 +
  text-align: center !important;
 +
  transform: rotateY(180deg);
 +
  margin-left: -22px !important;
 +
/*  font-size: 30px;*/
 +
}
 +
</style>
 +
 
 +
<div class="row imgNavBlock">
 +
 
 +
<div class="col-md-1 imgSquarePadding"></div>
 +
 +
  <div class="col-md-10">
 +
 
 +
   
 +
    <div class="card-container">
 +
  <div class="col-md-3 card">
 +
        <div class="cubeHeight">
 +
  <div class="navBlockTxt side imgSquareOpenSource"> Open Source <br> <img src="https://static.igem.org/mediawiki/2016/7/71/T--BostonU_HW--openSourceIcon_rcwolf.png" >
 +
        </div>
 +
        <div class="side back" style="top: 15%">
 +
            <h4>Neptune is completely open-source</h4>
 +
            <br>
 +
            <a href=""><button type="button" class="btn btn-primary" >learn more</button></a>
 +
        </div>
 +
  </div>
 +
    </div>
 +
  </div>
 +
 
 +
 
 +
   
 +
    <div class="card-container">
 +
    <div class="col-md-3 card">
 +
        <div class="cubeHeight">
 +
    <div class="navBlockTxt side imgSquareTutorial"> Tutorials <br> <img src="https://static.igem.org/mediawiki/2016/a/a4/T--BostonU_HW--tutorialsIcon_rcwolf.png" >
 +
        </div>
 +
        <div class="side back" style="top: 15%">
 +
          <h4>Watch our Neptune tutorial</h4>
 +
          <br>
 +
          <a href=""><button type="button" class="btn btn-primary">learn more</button></a>
 +
        </div>
 +
  </div>
 +
    </div>
 +
  </div>
 +
 
 +
 
 +
   
 +
    <div class="card-container">
 +
  <div class="col-md-3 card">
 +
      <div class="cubeHeight">
 +
<div class="navBlockTxt side imgSquareOurTeam"> Our Team <br> <img src="https://static.igem.org/mediawiki/2016/4/49/T--BostonU_HW--ourTeamIcon_rcwolf.png" >
 +
        </div>
 +
        <div class="side back" style="top: 15%">
 +
            <h4>Meet the team behind the magic</h4>
 +
            <br>
 +
            <a href=""><button type="button" class="btn btn-primary">learn more</button></a>
 +
        </div>
 +
  </div>
 +
    </div>
 +
  </div>
 +
 
 +
   
 +
    <div class="card-container">
 +
  <div class="col-md-3 card">
 +
        <div class="cubeHeight">
 +
<div class="navBlockTxt side imgSquare"> Demonstration <br> <img src="https://static.igem.org/mediawiki/2016/d/da/T--BostonU_HW--demonstrationIcon_rcwolf.png" >
 +
        </div>
 +
    <div class="side back" style="top: 15%">
 +
            <h4>See how Neptune is being used in other labs</h4>
 +
            <br>
 +
            <a href=""><button type="button" class="btn btn-primary">learn more</button></a>
 +
        </div>
 +
      </div>
 +
    </div>
 +
  </div>
 +
 
 +
  </div>
 +
 
 +
  <div class="col-md-1 imgSquarePadding"></div>
  
 
</div>
 
</div>
  
  
 +
<!-- Footer -->
 +
    <div id="contact" class="row">
 +
        <div class="container">
 +
 +
 +
 +
<br><br/>
 +
<h3 style="text-align:center; font-size:20px;">Thank you to our sponsors for their support</h3>
 +
<br><br/>
 +
<img src="https://static.igem.org/mediawiki/2016/9/9a/FooterLogoBoard_rcwolf.png" align="middle"></img>
 +
<br><br/><br>
 +
 +
                   
 +
    </div>
 +
</div>
 +
        </div>
 +
</div>
 +
 +
 +
 +
<div class="container contactUs">
 +
 +
<div class="row contactUsContent">
 +
<div class="col-md-3" style="color:white; padding-left: 50px;">CONTACT US</div>
 +
<div class="col-md-2" style="text-align:center;"><a href="mailto:bu.igemhw2016@gmail.com"><img src="https://static.igem.org/mediawiki/2016/b/b1/T--BostonU_HW--emailIcon_rcwolf.png" height="50px" width="60px"></a></div>
 +
<div class="col-md-2"></div>
 +
<div class="col-md-2" style="text-align:center;"><a href="https://twitter.com/iGemHWBU"><img src="https://static.igem.org/mediawiki/2016/7/78/T--BostonU_HW--twitterIcon_rcwolf.png" height="50px" width="60px"></a></div>
 +
<div class="col-md-3"></div>
 +
</div>
 +
<br><br>
 +
<div class="row">
 +
<p class="text-muted" style="text-align:center; color:white; ">Copyright &copy; Boston University Hardware Team Website 2016</p>
 +
</div>
 +
 +
 +
</div>
  
  
  
 
</body>
 
</body>
 +
 
</html>
 
</html>

Latest revision as of 20:52, 4 August 2016

EXPERIENCE NEPTUNE


An end to end design suite for
continuous flow microfluidic devices












SPECIFY
DESIGN
BUILD

Begin by defining which inputs and outputs your microfluidic chip will have. Declare any limitations in terms of port size, channel width. Neptune will efficiently place and route the features of your chip. The mapper (MM) tool within the place and routing functionality has been made completely by the iGEM Team.
Check and visualize your device layout using the Neptune graphical user interface. Edit the design if you so desire. Establish a control sequence to move fluids through the microfluidic chip. The interface has been made completely by the iGEM Team.
Assemble your microfluidic system. Import our design files into a 3D Printer and CNC mill to make the chip and the pump setup. Change the setup using our parameterized designs to fit your specific needs. The design of the setup is BU iGEM work, whilst the chip manufacturing is the work of our mentors.
OUR PROJECT

Neptune is a specify, design, and build tool for the development of continuous flow microfluidics. With Neptune, users can specify microfluidic devices through a high level description of liquid flow relations. Our application will automatically place and route the design schematic of the microfluidic and, when used in conjunction with low cost and readily available CAD tools, a user can build their custom microfluidic system in-lab.

The Boston University 2016 iGem Hardware Team is encapsulating this entire workflow through a graphical user interface. Users can write files that specify the function of the microfluidic, preview and edit their microfluidic design generated by the application, use this application directly with CAD tools such as a CNC mill to fabricate their device, and physically control valves and ports on the microfluidic chip. The iGem team is also complementing this workflow by developing and releasing open source designs of our hardware, including parametric 3D print files and firmware for microcontrollers that actuate the microfluidic valves. Finally, the iGem team is also involved in the development of the place and route software that converts a high level description of liquid flow relations into a microfluidic netlist that can that be converted into a design schematic.

Neptune is completely open-source


Watch our Neptune tutorial


Meet the team behind the magic


See how Neptune is being used in other labs




Thank you to our sponsors for their support






CONTACT US


Copyright © Boston University Hardware Team Website 2016