Difference between revisions of "Team:Colegio EmelinaU/Practices"

(Prototype team page)
 
 
(20 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Colegio_EmelinaU}}
+
{{Template_All_Teams}}
 +
 
 +
<!-- Declare that you are going to use html code instead of wiki code -->
 
<html>
 
<html>
 +
<link href='https://fonts.googleapis.com/css?family=Roboto' rel='stylesheet' type='text/css'>
 +
<link href='https://fonts.googleapis.com/css?family=Rancho' rel='stylesheet' type='text/css'>
  
<h2> Human Practices </h2>
+
<!-- Start of CSS-->
 +
<style type="text/css">
  
<p>iGEM teams are unique and leading the field because they "go beyond the lab" to imagine their projects in a social/environmental context, to better understand issues that might influence the design and use of their technologies.</p>
+
body{
<p>Teams work with students and advisors from the humanities and social sciences to explore topics concerning ethical, legal, social, economic, safety or security issues related to their work. Consideration of these Human Practices is crucial for building safe and sustainable projects that serve the public interest. </p>
+
 
<p>For more information, please see the <a href="https://2015.igem.org/Practices_Hub">Practices Hub</a>.</p>
+
 
 +
}
 +
 
 +
 
 +
.intro{
 +
text-align:left;
 +
 
 +
}
 +
 
 +
p{
 +
text-align:justify;
 +
}
 +
 
 +
.imagen{
 +
 
 +
float:left;
 +
padding:10px;
 +
box-sizing: border-box;
 +
 
 +
}
 +
 
 +
.logo{
 +
padding-top:50px;
 +
 
 +
}
 +
 
 +
#globalWrapper, #content{
 +
float:none;
 +
margin:0 auto;
 +
 
 +
 
 +
}
 +
 
 +
/* since the background is dark, we change the color of the text and links so they are visible on "show preview" mode */
 +
 
 +
p, #content {
 +
color:#808284;
 +
}
 +
 
 +
a, a:visited {
 +
color:#22BCB9;
 +
}
 +
 
 +
 
 +
 
 +
/* PAGE LAYOUT */
 +
 
 +
 +
/* Set up a width, height and color of the body wrapper*/
 +
body {
 +
background-color:#ffffff;
 +
                                font-family: 'Roboto', sans-serif;
 +
}
 +
 
 +
/* Creates a container that will wrap all of the content inside your wiki pages. */
 +
#mainContainer { 
 +
width: 980px;
 +
overflow:hidden;
 +
float:left;
 +
margin-left:20px;
 +
margin-bottom: 10px;
 +
background-color: #fff;
 +
 +
                                -webkit-box-shadow: 2px 0px 34px 0px rgba(145,145,145,0.72);
 +
                                -moz-box-shadow: 2px 0px 34px 0px rgba(145,145,145,0.72);
 +
                                box-shadow: 2px 0px 34px 0px rgba(145,145,145,0.72);
 +
 
 +
 
 +
 +
}
 +
 
 +
/* Creates the container for the menu */
 +
#menuContainer  {
 +
      width: 200px;
 +
                              background: #BA00E8;
 +
                              font-family: 'Oxygen Mono', Tahoma, Arial, sans-serif;
 +
                              zoom: 1;
 +
                              font-size: 12px;
 +
                              float:left;
 +
                              margin-right:15px;
 +
                              height:1600px;
 +
                           
 +
                           
 +
                               
 +
 
 +
}
 +
 
 +
/* Creates the container for the content */
 +
#contentContainer {
 +
padding-top:10px;
 +
padding-right:10px;
 +
margin-bottom: 20px;
 +
padding-left: 50px;
 +
background-color: #fff;
 +
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
 +
             
 +
                         
 +
                             
 +
}
 +
 
 +
 
 +
/*Set up height place holder for the banner*/
 +
      #bannerContainer {
 +
height:200px;
 +
margin:auto;
 +
text-align:center;
 +
color: #24B694;
 +
                                background:url(https://static.igem.org/mediawiki/2015/2/29/Banner_wiki_03.png);
 +
                             
 +
                               
 +
}
 +
 
 +
/*VISUAL STYLE (TABLES, FONTS, LINKS, IMAGES, UL) */
 +
 
 +
/*Change the styling of text for everything inside main container*/
 +
#mainContainer p {
 +
font-size: 13px;
 +
color: #000000;
 +
}
 +
 +
/*This changes the color and font family */
 +
#contentContainer h1, h2, h3, h4, h5, h6 {
 +
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
 +
color: #29221F;
 +
border-bottom: none;
 +
font-weight: bold;
 +
margin-top:10px;
 +
}
 +
 
 +
/*Style of the links - links are different inside the menu */
 +
#contentContainer a {
 +
font-weight: bold;
 +
color: #22BCB9;
 +
}
 +
 
 +
  /* Styling links on hover- links are different inside the menu */
 +
#contentContainer a:hover {
 +
color: #14747D;
 +
}
 +
 
 +
/*Change the styling of tables */
 +
        #contentContainer table {
 +
    border: 2px solid #29221F;
 +
    border-collapse: collapse;
 +
    margin: auto;
 +
    margin-bottom: 15px;
 +
    margin-top: 15px;
 +
    margin-right: 10px;
 +
    margin-left: 10px;
 +
    }
 +
 
 +
/*Change the styling of table cells*/
 +
    #contentContainer  td {
 +
    background-color: #fff;
 +
    padding: 20px;
 +
    border: 2px solid #29221F;
 +
    border-collapse: collapse;
 +
    vertical-align: text-top;
 +
    }
 +
 
 +
 
 +
/*Change the styling of table headers */
 +
    #contentContainer th {
 +
    background-color: #F4F0D8;
 +
    padding: 10px;
 +
    border: 2px solid #29221F;
 +
    border-collapse: collapse;
 +
    vertical-align: text-top;
 +
    }
 +
 
 +
 
 +
 
 +
 
 +
/*MENU STYLING */
 +
 
 +
/*Styling for the links in the menu */
 +
#menuContainer a {
 +
color: #fff;
 +
text-decoration:none;
 +
                               
 +
 +
}
 +
 
 +
/* Sets the style for lists inside menuContainer  */
 +
#menuContainer ul {
 +
list-style: none;
 +
margin-left:5px;
 +
}
 +
 
 +
/*Styles the list items to become menu buttons */
 +
#menuContainer ul li {
 +
 +
display: block;
 +
width: 100%;
 +
height:30px;
 +
padding-top:10px;
 +
                                padding-left:0px;
 +
                                border-bottom: 1px solid #fff;
 +
                             
 +
 
 +
}
 +
 
 +
/*For the menu buttons, changes the color when hovering*/
 +
#menuContainer li:hover {
 +
color:  #FFF;
 +
background-color: #ED417B;
 +
                                transition:1s;
 +
                                margin-left:10px;
 +
}
 +
 
 +
/*Submenus are not displayed as default*/
 +
#menuContainer li ul {
 +
 
 +
display: none;
 +
padding-top:15px;
 +
margin-left: 0px;
 +
 
 +
 
 +
}
 +
 
 +
/*Submenus are displayed when hovering the menu button */
 +
#menuContainer li:hover ul {
 +
/*display: inline-block; */
 +
display: block;
 +
position: absolute;
 +
float:right;
 +
margin-left: 150px;
 +
                                margin-top:-42px;
 +
 
 +
 
 +
}
 +
 
 +
/*Style the submenu buttons*/
 +
#menuContainer li ul li{
 +
                                background-color: rgba(172, 41, 229, 0.8);
 +
                                background: rgba(172, 41, 229, 0.8);
 +
                                color: rgba(172, 41, 229, 0.8);
 +
padding-left:20px;
 +
padding-right:20px;
 +
height:30px;
 +
padding-top:10px;
 +
margin-top:-3px;
 +
color: white;
 +
                                font-size:1rem;
 +
                                width:200px;
 +
}
 +
 
 +
/*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: #F4F0D8;
 +
    margin-bottom: 15px;
 +
    margin-top: 15px;
 +
    padding: 15px;
 +
    padding-top: 5px;
 +
            }
 +
.animated {
 +
    -webkit-animation-duration: 4s;
 +
    animation-duration: 4s;
 +
    -webkit-animation-fill-mode: both;
 +
    animation-fill-mode: both;
 +
}
 +
 
 +
@-webkit-keyframes bounceIn {
 +
    0% {
 +
        opacity: 0;
 +
        -webkit-transform: scale(.3);
 +
    }
 +
 
 +
    50% {
 +
        opacity: 1;
 +
        -webkit-transform: scale(1.05);
 +
    }
 +
 
 +
    70% {
 +
        -webkit-transform: scale(.9);
 +
    }
 +
 
 +
    100% {
 +
        -webkit-transform: scale(1);
 +
    }
 +
}
 +
 
 +
@keyframes bounceIn {
 +
    0% {
 +
        opacity: 0;
 +
        transform: scale(.3);
 +
    }
 +
 
 +
    50% {
 +
        opacity: 1;
 +
        transform: scale(1.05);
 +
    }
 +
 
 +
    70% {
 +
        transform: scale(.9);
 +
    }
 +
 
 +
    100% {
 +
        transform: scale(1);
 +
    }
 +
}
 +
 
 +
.bounceIn {
 +
    -webkit-animation-name: bounceIn;
 +
    animation-name: bounceIn;
 +
}
 +
 
 +
</style>
 +
<!-- End of CSS -->
 +
 
 +
 
 +
<!-- Start of the template html elements. -->
 +
<div id ="mainContainer"><!--This div will close on the page.-->
 +
 
 +
 +
<div id="bannerContainer">
 +
<div class="logo">
 +
<img src="https://static.igem.org/mediawiki/2015/3/33/Logo_oficial.png">
  
<div class="highlightBox">
 
<h4>Note</h4>
 
<p>You must fill out this page in order to be considered for all <a href="https://2015.igem.org/Judging/Awards">awards</a> for Human Practices:</p>
 
<ul>
 
<li>Human Practices silver medal criterion</li>
 
<li>Human Practices gold medal criterion</li>
 
<li>Best Integrated Human Practices award</li>
 
<li>Best Education and Public Engagement award</li>
 
</ul>
 
 
</div>
 
</div>
 +
</div>
  
 +
<!-- Start of menu -->
 +
<div id="menuContainer">
  
<h5>Some Human Practices topic areas </h5>
+
<!-- This list is your menu, every list item is a menu button and nested listed become submenu buttons -->
<ul>
+
<ul class="animated bounceIn">
<li>Philosophy</li>
+
<a href="https://2015.igem.org/Team:Colegio_EmelinaU"><li>HOME</li></a>
<li>Public Engagement / Dialogue</li>
+
<li>Education</li>
+
<li>Product Design</li>
+
<li>Scale-Up and Deployment Issues</li>
+
<li>Environmental Impact</li>
+
<li>Ethics</li>
+
<li>Safety</li>
+
<li>Security</li>
+
<li>Public Policy</li>
+
<li>Law and Regulation</li>
+
<li>Risk Assessment</li>
+
</ul>
+
  
<h5>What should we write about on this page?</h5>
+
<a href="https://2015.igem.org/Team:Colegio_EmelinaU/Team"><li>TEAM</li></a>
<p>On this page, you should write about the Human Practices topics you considered in your project, and document any special activities you did (such as visiting experts, talking to lawmakers, or doing public engagement).</p>
+
  
 +
<a href="#"><li>PROJECT >
 +
            <ul>
 +
<a href="https://2015.igem.org/Team:Colegio_EmelinaU/Description"><li>Description</li></a>
 +
<a href="https://2015.igem.org/Team:Colegio_EmelinaU/Experiments"><li>Experiments & Protocols</li></a> 
 +
<a href="https://2015.igem.org/Team:Colegio_EmelinaU/Results"><li>Results</li></a>
 +
                                                        <a href="https://2015.igem.org/Team:Colegio_EmelinaU/Design"><li>Design</li></a>
 +
                                                        <a href="https://2015.igem.org/Team:Colegio_EmelinaU/Bussingmodels"><li>Bussing Models</li></a>
 +
</ul>
 +
</li></a>
  
<h5>Inspiration</h5>
+
<a href="#"><li>PARTS >
<p>Read what other teams have done:</p>
+
            <ul>
<ul>
+
<a href="https://2015.igem.org/Team:Colegio_EmelinaU/Parts"><li>Team Parts</li></a>
<li><a href="https://2014.igem.org/Team:Dundee/policypractice/experts">2014 Dundee </a></li>
+
<li><a href="https://2014.igem.org/Team:UC_Davis/Policy_Practices_Overview">2014 UC Davis </a></li>
+
</ul>
<li><a href="https://2013.igem.org/Team:Manchester/HumanPractices">2013 Manchester </a></li>
+
</li></a>
<li><a href="https://2013.igem.org/Team:Cornell/outreach">2013 Cornell </a></li>
+
</ul>
+
  
<h3>Integrated Human Practices</h3>
+
                                        <a href="https://2015.igem.org/Team:Colegio_EmelinaU/Practices"><li>HUMAN PRACTICES</li></a>
  
<p>Do you want to be considered for the <a href="https://2015.igem.org/Judging/Awards#SpecialPrizes">Best Integrated Human Practices award</a>? Make it easy for the judges to find any wiki content that is relevant to this prize. Highlight this content with a header or separate section.</p>
+
<a href="https://2015.igem.org/Team:Colegio_EmelinaU/Notebook"><li>NOTEBOOK</li></a>
 +
     
 +
<a href="https://2015.igem.org/Team:Colegio_EmelinaU/Modeling"><li>MODELING</li></a>
  
<h3>Education and Public Engagement</h3>
+
                                        <a href="https://2015.igem.org/Team:Colegio_EmelinaU/Attributions"><li>ATTRIBUTIONS</li></a>
 +
 
 +
<a href="https://2015.igem.org/Team:Colegio_EmelinaU/Collaborations"><li>COLLABORATIONS</li></a>
 +
 
 +
 +
 
 +
</ul>
 +
</div>
 +
<!-- End of menu  -->
 +
 
 +
<!-- Start of content -->
 +
<div id="contentContainer">
 +
 
 +
 
 +
                        <div class="intro">
 +
<h1>Description: </h1>
 +
<hr>
 +
<h2>Human Practices</h2>
 +
<p>In order to make our project public, we have participated in different activities such as the
 +
Fiesta de la Ciencia in Quinta Normal, Santiago de Chile, in the Campamento Chile Va 2014, in
 +
Picarquín, Chile, in the home-made extraction of DNA in scientific fairs.
 +
Besides, means of communication of our country have been interested in our project and they
 +
have shown the project in different ways, we have appeared in television, radio and local
 +
newspapers, among others.
 +
We enjoy spreading science although we don´t like photographs … We invite you to know our
 +
great experience and support science.
 +
</p>
 +
 
 +
<center><iframe width="420" height="315" src="https://www.youtube.com/embed/DOoWmSmRllQ" frameborder="0" allowfullscreen></iframe></center>
 +
 
 +
<center>
 +
<img src="https://static.igem.org/mediawiki/2015/4/45/Human_01.png" width="300">
 +
<img src="https://static.igem.org/mediawiki/2015/5/5b/Human_02.png" width="300">
 +
<img src="https://static.igem.org/mediawiki/2015/f/fe/Human_04.png" width="300">
 +
<img src="https://static.igem.org/mediawiki/2015/c/cd/Human_05.png" width="300">
 +
<img src="https://static.igem.org/mediawiki/2015/9/98/Human_06.png" width="300">
 +
<img src="https://static.igem.org/mediawiki/2015/0/03/Human_07.png" width="300">
 +
</center>
 +
 
 +
 
 +
<center><img src="https://static.igem.org/mediawiki/2015/5/5c/Emelina_lun.PNG"></center>
 +
 
 +
 
 +
<center>interview to the newspaper the latest news <a href="https://static.igem.org/mediawiki/2015/e/e2/ENTREVISTA_LUN_A_JACQUELINE.pdf">(click)</a></center>
 +
 
 +
</div>
  
<p>Do you want to be considered for the <a href="https://2015.igem.org/Judging/Awards#SpecialPrizes">Best Education and Public Outreach award</a>? Make it easy for the judges to find any wiki content that is relevant to this prize. Highlight this content with a header or separate section.</p>
 
  
 
</div>
 
</div>
 +
<!--This div will close on the page.-->
 
</html>
 
</html>

Latest revision as of 21:22, 18 September 2015

Description:


Human Practices

In order to make our project public, we have participated in different activities such as the Fiesta de la Ciencia in Quinta Normal, Santiago de Chile, in the Campamento Chile Va 2014, in Picarquín, Chile, in the home-made extraction of DNA in scientific fairs. Besides, means of communication of our country have been interested in our project and they have shown the project in different ways, we have appeared in television, radio and local newspapers, among others. We enjoy spreading science although we don´t like photographs … We invite you to know our great experience and support science.

interview to the newspaper the latest news (click)