Difference between revisions of "Team:BroadRun-NorthernVA/Attributions"

(Prototype team page)
 
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{BroadRun-NorthernVA}}
 
{{BroadRun-NorthernVA}}
 
<html>
 
<html>
 +
<!-- Start of CSS-->
 +
<style type="text/css">
  
<h2> Attributions</h2>
+
/* PAGE LAYOUT */
  
<p> Each team must clearly attribute work done by the student team members on this page. The team must distinguish work done by the students from work done by others, including the host labs, advisors, instructors, and individuals not on the team roster. </p>
+
/* Change Background color*/
 +
body {FFCC66
 +
background-color: #FFD699
 +
}
  
 +
/* Creates a container that will wrap all of the content inside your wiki pages. */
 +
#mainContainer { 
 +
width: 978px;
 +
overflow:hidden;
 +
float:left;
 +
margin-left:20px;
 +
margin-bottom: 10px;
 +
background-color: #FFE680;
 +
border-bottom: 814px solid #FFE680;
 +
border-right: 2px solid #000000;
 +
border-left: 2px solid #000000;
 +
border-top: 5px solid #000000;
 +
font-family: "Helvetica", Helvetica, sans-serif;
 +
}
  
<div class="highlightBox">
+
/* Creates the container for the menu */
 +
#menuContainer  {
 +
float:left;
 +
width: 134px;
 +
padding: 20px 0px;
 +
border-top: 14px solid #7A0000;
 +
background-color: #7A0000;
 +
}
  
<h4> Can we base our project on a previous one? </h4>
+
/* Creates the container for the content */
<p>Yes! You can have a project based on a previous team, or based on someone else's idea, <b>as long as you state this fact very clearly and give credit for the original project.</b> </p>
+
#contentContainer {
</div>
+
padding-top:20px;
 +
padding-right:10px;
 +
margin-bottom: 20px;
 +
width: 814px;
 +
padding-left: 20px;
 +
float: left;
 +
background-color: #FFE680;
 +
border-top: 14px solid #7A0000;
 +
font-family: "Georgia", Helvetica, sans-serif;
 +
}
  
 +
/*Set up height place holder for the banner*/
 +
#bannerContainer {
 +
height:200px;
 +
margin:auto;
 +
text-align:center;
 +
color: #FFCC66;
 +
}
  
 +
/*VISUAL STYLE (TABLES, FONTS, LINKS, IMAGES, UL) */
  
<h4> Why is this page needed? </h4>
+
/*Change the styling of text for everything inside main container*/
<p>The Attribution requirement helps the judges know what you did yourselves and what you had help with. We don't mind if you get help with difficult or complex techniques, but you must report what work your team did and what work was done by others.</p>
+
#mainContainer p {
<p>
+
font-size: 13px;
For example, you might choose to work with an animal model during your project. Working with animals requires getting a license and applying far in advance to conduct certain experiments in many countries. This is difficult to achieve during the course of a summer, but much easier if you can work with a postdoc or PI who has the right licenses.</p>
+
color: #000000;
 +
}
 +
 +
/*This changes the color and font family */
 +
#contentContainer h1, h2, h3, h4, h5, h6 {
 +
color: #000000;
 +
border-bottom: none;
 +
font-weight: bold;
 +
font-family: "Trebuchet MS", Helvetica, sans-serif;
 +
margin-top:10px;
 +
}
  
 +
/*Style of the links - links are different inside the menu */
 +
#contentContainer a {
 +
font-weight: bold;
 +
color: #000000;
 +
}
  
<h5> What should this page have?</h5>
+
  /* Styling links on hover- links are different inside the menu */
 +
#contentContainer a:hover {
 +
color: #FFFFFF
 +
}
  
<ul>
+
/*Change the styling of tables */
<li>General Support</li>
+
        #contentContainer table {
<li>Project support and advice</li>
+
    border: 1px solid #000000;
<li>Fundraising help and advice</li>
+
    border-collapse: collapse;
<li>Lab support</li>
+
    width: 90%
<li>Difficult technique support</li>
+
    margin: auto;
<li>Project advisor support</li>
+
    margin-bottom: 15px;
<li>Wiki support</li>
+
    margin-top: 15px;
<li>Presentation coaching</li>
+
    margin-right: 10px;
<li>Human Practices support</li>
+
    margin-left: 10px;
<li> Thanks and acknowledgements for all other people involved in helping make a successful iGEM team</li>
+
    }
</ul>
+
  
 +
/*Change the styling of table cells*/
 +
    #contentContainer  td {
 +
    padding: 10px;
 +
    border: 1px solid #00000;
 +
    border-collapse: collapse;
 +
    vertical-align: text-top;
 +
    }
 +
 +
/*Change the styling of table headers */
 +
    #contentContainer th {
 +
    background-color: #000000;
 +
    padding: 10px;
 +
    border: 1px solid #565656;
 +
    border-collapse: collapse;
 +
    vertical-align: text-top;
 +
    }
 +
 +
 +
 +
/*MENU STYLING */
 +
 +
/*Styling for the links in the menu */
 +
#menuContainer a {
 +
color: #FFFFFF;
 +
text-decoration:none;
 +
font-weight: bold;
 +
}
 +
 +
/* Sets the style for lists inside menuContainer  */
 +
#menuContainer ul {
 +
list-style: none;
 +
margin-left:0px;
 +
}
 +
 +
/*Styles the list items to become menu buttons */
 +
#menuContainer ul li {
 +
text-align: center;
 +
display: block;
 +
width: 100%;
 +
height:30px;
 +
padding-top:10px;
 +
}
 +
 +
/*For the menu buttons, changes the color when hovering*/
 +
#menuContainer li:hover {
 +
color:  #FFFFFF;
 +
background-color: #000000;
 +
}
 +
 +
/*Submenus are not displayed as default*/
 +
#menuContainer li ul {
 +
display: none;
 +
padding-top:15px;
 +
margin-left: -19px;
 +
}
 +
 +
/*Submenus are displayed when hovering the menu button */
 +
#menuContainer li:hover ul {
 +
/*display: inline-block; */
 +
display: block;
 +
position: absolute;
 +
float:right;
 +
margin-left: 134px;
 +
margin-top:-42px;
 +
}
 +
 +
/*Style the submenu buttons*/
 +
#menuContainer li ul li{
 +
background-color: #800000;
 +
padding-left:20px;
 +
padding-right:20px;
 +
height:30px;
 +
padding-top:10px;
 +
margin-top:-2px;
 +
color: #FFFFFF;
 +
width: 150px;
 +
}
 +
 +
/*CLASSES */
 +
 +
/*Clear class for all the pages, adds spacing too*/
 +
.clear{
 +
clear:both;
 +
height: 10px;
 +
}
 +
 +
 +
/* highlight box for special messages */
 +
    .highlightBox {
 +
        width:500px;
 +
        margin:auto;
 +
        background-color: #7A0000;
 +
margin-bottom: 15px;
 +
margin-top: 15px;
 +
padding: 15px;
 +
padding-top: 5px;
 +
    }
 +
 +
 +
</style>
 +
<!-- End of CSS -->
 +
<font size="4">
 +
<h1> Attributions </h1>
 +
 +
The project initiation was solely the efforts of  our team member captains. Project topic decisions were made by the team with advice from our mentors.  Our team captains were responsible for keeping the project on track, and initiating efforts to secure funding and conducting public education and outreach. All lab work was conducted by our team. We'd like to thank all those who have helped us over the summer, not only for making iGEM possible but also for making it incredibly fun.
 +
<br></br>
 +
 +
<b>Baltimore Underground Science Space</b>
 +
<b>Dr. Tom Burkett</b> - Founder of Baltimore Underground Science Space -  Advised our project selection, supervised our lab-work, assisted in designing our gene constructs, provided us with enzymes, reagents, buffers and other materials needed for our experiments, and ensured our experiments were properly designed and carried out safely.
 +
<br></br>
 +
 +
<b>Dr. Lisa Scheifele</b> - Biology professor at Loyola University- Mentored our project, gave expert advice on our practices in the lab, assisted in designing our gene constructs, yeast transformations, and understanding of lab equipment, and provided us with two yeast vectors for our research.
 +
<br></br>
 +
 +
 +
<br></br>
  
<h4>Inspiration</h4>
 
<p>Take a look at what other teams have done:</p>
 
<ul>
 
<li><a href="https://2011.igem.org/Team:Imperial_College_London/Team">2011 Imperial College London</a> (scroll to the bottom)</li>
 
<li><a href="https://2014.igem.org/Team:Exeter/Attributions">2014 Exeter </a></li>
 
<li><a href="https://2014.igem.org/Team:Melbourne/Attributions">2014 Melbourne </a></li>
 
<li><a href="https://2014.igem.org/Team:Valencia_Biocampus/Attributions">2014 Valencia Biocampus</a></li>
 
 
</ul>
 
</ul>
  
 
</div>
 
</div>
 
</html>
 
</html>

Latest revision as of 21:26, 2 October 2015

{{BroadRun-NorthernVA}}



>

Attributions

The project initiation was solely the efforts of our team member captains. Project topic decisions were made by the team with advice from our mentors. Our team captains were responsible for keeping the project on track, and initiating efforts to secure funding and conducting public education and outreach. All lab work was conducted by our team. We'd like to thank all those who have helped us over the summer, not only for making iGEM possible but also for making it incredibly fun.

Baltimore Underground Science Space Dr. Tom Burkett - Founder of Baltimore Underground Science Space - Advised our project selection, supervised our lab-work, assisted in designing our gene constructs, provided us with enzymes, reagents, buffers and other materials needed for our experiments, and ensured our experiments were properly designed and carried out safely.

Dr. Lisa Scheifele - Biology professor at Loyola University- Mentored our project, gave expert advice on our practices in the lab, assisted in designing our gene constructs, yeast transformations, and understanding of lab equipment, and provided us with two yeast vectors for our research.