Difference between revisions of "Team:Marburg/Notebook"

(Prototype team page)
 
 
(41 intermediate revisions by 2 users not shown)
Line 1: Line 1:
 
{{Marburg}}
 
{{Marburg}}
 
<html>
 
<html>
 +
  <style>
 +
    .medal {
 +
      margin: 1em;
 +
      height: 100px;
 +
    }
  
 +
    .popup-header {
 +
      align-items: center;
 +
    }
  
<div class="column full_size">
+
    .timeline {
 +
      position: relative;
 +
    }
  
<h1>Notebook</h1>
+
    .timeline hr {
<p> Document the dates you worked on your project. This should be a detailed account of the work done each day for your project.</p>
+
      margin: .5rem 0;
 +
      width: unset;
 +
      padding: unset;
 +
    }
  
</div>
+
    .timeline::before {
<div class="clear"></div>
+
      content: '';
 +
      background: #626574;
 +
      width: 5px;
 +
      height: 96%;
 +
      position: absolute;
 +
      left: 50%;
 +
      transform: translateX(-50%);
 +
    }
  
 +
    .timeline-item {
 +
      width: 100%;
 +
      margin-bottom: 70px;
 +
    }
  
 +
    .timeline-item:nth-child(even) .timeline-content {
 +
      float: right;
 +
      padding: 40px 30px 10px 30px;
 +
    }
  
<div class="column two_thirds_size">
+
    .timeline-item:nth-child(even) .timeline-content .date {
<h3>What should this page have?</h3>
+
      right: auto;
<ul>
+
      left: 0;
<li>Chronological notes of what your team is doing.</li>
+
    }
<li> Brief descriptions of daily important events.</li>
+
<li>Pictures of your progress. </li>
+
<li>Mention who participated in what task.</li>
+
</ul>
+
  
</div>
+
    .timeline-item:nth-child(even) .timeline-content::after {
 +
      content: '';
 +
      position: absolute;
 +
      border-style: solid;
 +
      width: 0;
 +
      height: 0;
 +
      top: 30px;
 +
      left: -15px;
 +
      border-width: 10px 15px 10px 0;
 +
      border-color: transparent #f5f5f5 transparent transparent;
 +
    }
  
<div class="column third_size">
+
    .timeline-item::after {
<div class="highlight decoration_A_full">
+
      content: '';
<h3>Inspiration</h3>
+
      display: block;
<p>You can see what others teams have done to organize their notes:</p>
+
      clear: both;
 +
    }
  
<ul>
+
    .timeline-content {
<li><a href="https://2018.igem.org/Team:Munich/Notebook">2018 Munich</a></li>
+
      position: relative;
<li><a href="https://2014.igem.org/Team:ATOMS-Turkiye/Notebook">2014 ATOMS-Turkiye</a></li>
+
      width: 45%;
<li><a href="https://2014.igem.org/Team:Tec-Monterrey/ITESM14_project.html#tab_notebook">2014 Tec Monterrey</a></li>
+
      padding: 30px 30px;
<li><a href="https://2014.igem.org/Team:Kyoto/Notebook/Magnetosome_Formation#title">2014 Kyoto</a></li>
+
      border-radius: 4px;
<li><a href="https://2014.igem.org/Team:Cornell/notebook">2014 Cornell</a></li>
+
      background: white;
</ul>
+
      box-shadow: 0 20px 25px -15px rgba(0, 0, 0, 0.3);
</div>
+
    }
</div>
+
  
 +
    .timeline-content::after {
 +
      content: '';
 +
      position: absolute;
 +
      border-style: solid;
 +
      width: 0;
 +
      height: 0;
 +
      top: 30px;
 +
      right: -15px;
 +
      border-width: 10px 0 10px 15px;
 +
      border-color: transparent transparent transparent #f5f5f5;
 +
    }
 +
 +
    .timeline-card {
 +
      padding: 0 !important;
 +
    }
 +
 +
    .timeline-card p {
 +
      padding: 0 20px;
 +
    }
 +
 +
    .timeline-content p {
 +
      margin-top: 25px;
 +
    }
 +
 +
    .timeline-card a {
 +
      margin-left: 20px;
 +
    }
 +
 +
    .timeline-img {
 +
      width: 30px;
 +
      height: 30px;
 +
      border-radius: 50%;
 +
      position: absolute;
 +
      left: 50%;
 +
      margin-top: 25px;
 +
      margin-left: -15px;
 +
      background: #3d404d;
 +
    }
 +
 +
    .date {
 +
      background: #3d404d;
 +
      display: inline-block;
 +
      color: #FFFFFF;
 +
      padding: 10px;
 +
      position: absolute;
 +
      top: 0;
 +
      right: 0;
 +
      font-weight: bold;
 +
    }
 +
 +
    th {
 +
      min-width: 70px;
 +
    }
 +
 +
    @media screen and (max-width: 768px) {
 +
      .timeline::before {
 +
        left: 50px;
 +
      }
 +
 +
      .timeline .timeline-img {
 +
        left: 50px;
 +
      }
 +
 +
      .timeline .timeline-content {
 +
        max-width: 100%;
 +
        width: auto;
 +
        margin-left: 70px;
 +
        padding: 30px 30px;
 +
      }
 +
 +
      .timeline .timeline-item:nth-child(even) .timeline-content {
 +
        float: none;
 +
      }
 +
 +
      .timeline .timeline-item:nth-child(odd) .timeline-content::after {
 +
        content: '';
 +
        position: absolute;
 +
        border-style: solid;
 +
        width: 0;
 +
        height: 0;
 +
        top: 30px;
 +
        left: -15px;
 +
        border-width: 10px 15px 10px 0;
 +
        border-color: transparent #f5f5f5 transparent transparent;
 +
      }
 +
    }
 +
  </style>
 +
  <div>
 +
    <div class="box-dark">
 +
      <h1 class="heading">
 +
        N O T E B O O K
 +
      </h1>
 +
      <hr class="line">
 +
      <img src="https://static.igem.org/mediawiki/2019/a/ac/T--Marburg--logo.svg" class="logo" alt="Syntex Logo">
 +
    </div>
 +
    <section style="margin-top: 11vh;">
 +
      <section class="timeline">
 +
        <div class="container">
 +
          <div class="timeline-item">
 +
            <div class="timeline-img"></div>
 +
            <div class="timeline-content">
 +
              <div class="date">M A R C H</div>
 +
              <div class="content" style="margin-top: 50px;">
 +
                <table class="table">
 +
                  <tr>
 +
                    <th>7.</th>
 +
                    <td>First talk with Pascal Pfister about Cyano project</td>
 +
                  </tr>
 +
                  <tr>
 +
                    <th>21.</th>
 +
                    <td>Labfolder Seminar</td>
 +
                  </tr>
 +
                  <tr>
 +
                    <th>22. - 23.</th>
 +
                    <td>Project planning weekend</td>
 +
                  </tr>
 +
                  <tr>
 +
                    <th>26.</th>
 +
                    <td>Finished Syntex logo</td>
 +
                  </tr>
 +
                  <tr>
 +
                    <th>31.</th>
 +
                    <td>First time in the lab with cyanos</td>
 +
                  </tr>
 +
                </table>
 +
              </div>
 +
            </div>
 +
          </div>
 +
          <div class="timeline-item">
 +
            <div class="timeline-img"></div>
 +
            <div class="timeline-content">
 +
              <div class="date">A P R I L</div>
 +
              <table class="table">
 +
                <tr>
 +
                  <th>1. - 2.</th>
 +
                  <td>Postertalk at Max-Planck-Institute for Terrestrial Microbiology Marburg</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>1. - 7.</th>
 +
                  <td>Project reveal on social media</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>3.</th>
 +
                  <td>Labsupply Frankfurt</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>4.</th>
 +
                  <td>PCC tryout transformation</td>
 +
                </tr>
 +
              </table>
 +
            </div>
 +
          </div>
 +
 +
          <div class="timeline-item">
 +
            <div class="timeline-img"></div>
 +
            <div class="timeline-content">
 +
              <div class="date">M A Y</div>
 +
              <table class="table">
 +
                <tr>
 +
                  <th>2.</th>
 +
                  <td>Skype meeting with Prof. Annegret Wilde</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>3. - 5.</th>
 +
                  <td><a href="https://2019.igem.org/Team:Marburg/Collaborations#meetups" target="_blank">iGEM Spring Festival in Bonn</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>4.</th>
 +
                  <td><a href="https://2019.igem.org/Team:Marburg/Public_Engagement" target= "_blank">March4Science in Frankfurt</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>14.</th>
 +
                  <td>Promega Webinar</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>17. - 19.9.</th>
 +
                  <td><a href="https://2019.igem.org/Team:Marburg/Collaborations#meetups" target="_blank">iGEM Meetup in Erlangen</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>20.</th>
 +
                  <td>Skype meeting with Lars Bähr (CEO) from CellDeg</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>21. - 23.</th>
 +
                  <td>Labvolution in Hannover</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>28.</th>
 +
                  <td>Conference call with Berthold Technologies Measurement Systems</td>
 +
                </tr>
 +
              </table>
 +
            </div>
 +
          </div>
 +
 +
          <div class="timeline-item">
 +
            <div class="timeline-img"></div>
 +
            <div class="timeline-content">
 +
              <div class="date">J U N E</div>
 +
              <table class="table">
 +
                <tr>
 +
                  <th>3.</th>
 +
                  <td>
 +
                    iGEM BBQ with students in Marburg
 +
                    <hr>
 +
                    Skype meeting with Licher
 +
                  </td>
 +
                </tr>
 +
                <tr>
 +
                  <th>4. - 6.</th>
 +
                  <td><a href="https://2019.igem.org/Team:Marburg/Human_Practices#prof_wilde" target="_blank">Meetup with Prof. Annegret Wilde in Freiburg</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>8. - 9.</th>
 +
                  <td><a href="https://2019.igem.org/Team:Marburg/Public_Engagement" target= "_blank">Public Engagement at the Hessian Day in Bad Hersfeld</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>12.</th>
 +
                  <td>Skype meeting with Darcia Schweitzer from Promega</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>13.</th>
 +
                  <td>iGEM BBQ with students in Marburg</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>18.</th>
 +
                  <td>
 +
                    Symposium:<br>
 +
                    <i>You never walk alone - We and our microbiome organized by Synmikro</i>
 +
                  </td>
 +
                </tr>
 +
                <tr>
 +
                  <th>23.</th>
 +
                  <td>Teambuilding in the Kletterwald Marburg</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>23. - 27.</th>
 +
                  <td>Promega Instagram-Story takeover</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>24.</th>
 +
                  <td>Meeting with Kurt Weller from Sparkasse Frankfurt</td>
 +
                </tr>
 +
              </table>
 +
            </div>
 +
          </div>
 +
          <div class="timeline-item">
 +
            <div class="timeline-img"></div>
 +
            <div class="timeline-content">
 +
              <div class="date">J U L Y</div>
 +
              <table class="table">
 +
                <tr>
 +
                  <th>1.</th>
 +
                  <td><a href="https://2019.igem.org/Team:Marburg/Collaborations#delft" target="_blank">Skype meeting with the Delft iGEM team</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>5. - 7.</th>
 +
                  <td><a href="https://2019.igem.org/Team:Marburg/Collaborations#meetups" target="_blank">iGEM Meetup Düsseldorf</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>13.</th>
 +
                  <td>Project planning</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>17.</th>
 +
                  <td>
 +
                    Meeting with the mayor:<br>
 +
                    Future of iGEM in Marburg
 +
                  </td>
 +
                </tr>
 +
                <tr>
 +
                  <th>23.</th>
 +
                  <td>
 +
                    Skype meeting with iGEM team Aachen "Plastractor"
 +
                    <hr>
 +
                    <a href="https://2019.igem.org/Team:Marburg/Collaborations#delft" target="_blank">Skype meeting with iGEM team Delft</a>
 +
                  </td>
 +
                </tr>
 +
                <tr>
 +
                  <th>30.</th>
 +
                  <td><a href="https://2019.igem.org/Team:Marburg/Collaborations#golden_gate" target="_blank">First Golden Gate Webinar for European region</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>31.</th>
 +
                  <td><a href="https://2019.igem.org/Team:Marburg/Collaborations#golden_gate" target="_blank">Second Golden Gate Webinar for Asian/American region</a></td>
 +
                </tr>
 +
              </table>
 +
            </div>
 +
          </div>
 +
          <div class="timeline-item">
 +
            <div class="timeline-img"></div>
 +
            <div class="timeline-content">
 +
              <div class="date">A U G U S T</div>
 +
              <table class="table">
 +
                <tr>
 +
                  <th>1. - 7.</th>
 +
                  <td><a href="https://2019.igem.org/Team:Marburg/Collaborations#meetups" target="_blank">Biohackathon Vilnius</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>9.</th>
 +
                  <td><a href="https://2019.igem.org/Team:Marburg/Collaborations#golden_gate" target="_blank">Third Golden Gate Webinar for Asian/American region</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>14.</th>
 +
                  <td>Donating blood with the team</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>20.</th>
 +
                  <td>
 +
                    Skype meeting with Dr. Dan Kramer (CEO) from <a href="https://2019.igem.org/Team:Marburg/Human_Practices#cyano_biotech" target="_blank">Cyano Biotech</a>
 +
                    <hr>
 +
                    <a href="https://2019.igem.org/Team:Marburg/Collaborations#delft" target="_blank">Skype meeting with iGEM team Delft</a>
 +
                  </td>
 +
                </tr>
 +
                <tr>
 +
                  <th>21.</th>
 +
                  <td>Skype meeting with David De Lucrezia (managing director) from <a href="https://2019.igem.org/Team:Marburg/Human_Practices#doulix" target="_blank">Doulix</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>28.</th>
 +
                  <td>
 +
                    <a href="https://2019.igem.org/Team:Marburg/Human_Practices#promega" target="_blank">Magarethe Schwarz from Promega visits the team</a>
 +
                    <hr>
 +
                    Skype meeting with <a href="https://2019.igem.org/Team:Marburg/Human_Practices#nina_scheer" target="_blank">Nina Scheer from the Social Democratic Party of Germany (SPD)</a>
 +
                  </td>
 +
                </tr>
 +
              </table>
 +
            </div>
 +
          </div>
 +
          <div class="timeline-item">
 +
            <div class="timeline-img"></div>
 +
            <div class="timeline-content">
 +
              <div class="date">S E P T E M B E R</div>
 +
              <table class="table">
 +
                <tr>
 +
                  <th>10.</th>
 +
                  <td>Announcing the <a href="https://2019.igem.org/Team:Marburg/Collaborations#colony_pictures" target="_blank">colony picture collaboration winners</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>11. - 13.</th>
 +
                  <td><a href="https://2019.igem.org/Team:Marburg/Human_Practices#cyano_conference" target="_blank">Cyano Meetup in Tübingen organized by VAAM</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>14.</th>
 +
                  <td><a href="https://2019.igem.org/Team:Marburg/Collaborations#berlin" target="_blank">Skype meeting with iGEM team Berlin</a></td>
 +
                </tr>
 +
                <tr>
 +
                  <th>14. - 15.</th>
 +
                  <td>Public engagement during the plant market in the botanical garden of Marburg</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>26.</th>
 +
                  <td>
 +
                    <a href="https://www.deutschlandfunk.de/synthetische-biologie-wie-cyanobakterien-aus-sonnenlicht.676.de.html?dram:article_id=462031" target="_blank">Interview for "Forschung aktuell in DLF"</a> by Michael Lange
 +
                    <hr>
 +
                    <a href="https://2019.igem.org/Team:Marburg/Human_Practices#panel_discussion target="_blank">Panel discussion about genetic engineering</a> organized by the team
 +
                  </td>
 +
                </tr>
 +
              </table>
 +
            </div>
 +
          </div>
 +
          <div class="timeline-item">
 +
            <div class="timeline-img"></div>
 +
            <div class="timeline-content">
 +
              <div class="date">O C T O B E R</div>
 +
              <table class="table">
 +
                <tr>
 +
                  <th>9.</th>
 +
                  <td>Meeting with Dr. Friedhelm Nonne (Universities Chancellor)</td>
 +
                </tr>
 +
                <tr>
 +
                  <th>31. - 4.11.</th>
 +
                  <td>Giant Jamboree in Boston</td>
 +
                </tr>
 +
              </table>
 +
            </div>
 +
          </div>
 +
        </div>
 +
      </section>
 +
    </section>
 +
  </div>
 
</html>
 
</html>
 +
{{Marburg/footer}}

Latest revision as of 16:21, 7 December 2019

N O T E B O O K


M A R C H
7. First talk with Pascal Pfister about Cyano project
21. Labfolder Seminar
22. - 23. Project planning weekend
26. Finished Syntex logo
31. First time in the lab with cyanos
A P R I L
1. - 2. Postertalk at Max-Planck-Institute for Terrestrial Microbiology Marburg
1. - 7. Project reveal on social media
3. Labsupply Frankfurt
4. PCC tryout transformation
M A Y
2. Skype meeting with Prof. Annegret Wilde
3. - 5. iGEM Spring Festival in Bonn
4. March4Science in Frankfurt
14. Promega Webinar
17. - 19.9. iGEM Meetup in Erlangen
20. Skype meeting with Lars Bähr (CEO) from CellDeg
21. - 23. Labvolution in Hannover
28. Conference call with Berthold Technologies Measurement Systems
J U N E
3. iGEM BBQ with students in Marburg
Skype meeting with Licher
4. - 6. Meetup with Prof. Annegret Wilde in Freiburg
8. - 9. Public Engagement at the Hessian Day in Bad Hersfeld
12. Skype meeting with Darcia Schweitzer from Promega
13. iGEM BBQ with students in Marburg
18. Symposium:
You never walk alone - We and our microbiome organized by Synmikro
23. Teambuilding in the Kletterwald Marburg
23. - 27. Promega Instagram-Story takeover
24. Meeting with Kurt Weller from Sparkasse Frankfurt
J U L Y
1. Skype meeting with the Delft iGEM team
5. - 7. iGEM Meetup Düsseldorf
13. Project planning
17. Meeting with the mayor:
Future of iGEM in Marburg
23. Skype meeting with iGEM team Aachen "Plastractor"
Skype meeting with iGEM team Delft
30. First Golden Gate Webinar for European region
31. Second Golden Gate Webinar for Asian/American region
A U G U S T
1. - 7. Biohackathon Vilnius
9. Third Golden Gate Webinar for Asian/American region
14. Donating blood with the team
20. Skype meeting with Dr. Dan Kramer (CEO) from Cyano Biotech
Skype meeting with iGEM team Delft
21. Skype meeting with David De Lucrezia (managing director) from Doulix
28. Magarethe Schwarz from Promega visits the team
Skype meeting with Nina Scheer from the Social Democratic Party of Germany (SPD)
S E P T E M B E R
10. Announcing the colony picture collaboration winners
11. - 13. Cyano Meetup in Tübingen organized by VAAM
14. Skype meeting with iGEM team Berlin
14. - 15. Public engagement during the plant market in the botanical garden of Marburg
26. Interview for "Forschung aktuell in DLF" by Michael Lange
Panel discussion about genetic engineering organized by the team
O C T O B E R
9. Meeting with Dr. Friedhelm Nonne (Universities Chancellor)
31. - 4.11. Giant Jamboree in Boston