From 6c204be88eabbc2b9eba12f9e0508219fbce511d Mon Sep 17 00:00:00 2001
From: Divakar K <divakar.kalivarathan@gmail.com>
Date: Thu, 12 Oct 2023 15:51:57 +0000
Subject: [PATCH] Update file engineering.html

---
 wiki/pages/engineering.html | 98 ++++++++++++++++++++++++++++++++++++-
 1 file changed, 96 insertions(+), 2 deletions(-)

diff --git a/wiki/pages/engineering.html b/wiki/pages/engineering.html
index a3f04a2..77af2ff 100644
--- a/wiki/pages/engineering.html
+++ b/wiki/pages/engineering.html
@@ -4,8 +4,102 @@
 {% block lead %}Demonstrate engineering success in a part of your project by going through at least one iteration of the engineering design cycle.{% endblock %}
 
 {% block page_content %}
+<style>
+  @import url('https://fonts.googleapis.com/css2?family=Amatic+SC:wght@400;700&display=swap');
+  *{
+    margin: 0;
+    padding: 0;
+    box-sizing: border-box;
+  }
+  body {
+    /* Set the background color to the light cream color you mentioned */ 
+    background-color: #fffee7;
+    margin: 0; /* Remove default body margin */
+    padding: 0; /* Remove default body padding */
+    background-image: linear-gradient(
+        90deg,
+        rgba(232, 232, 232, 0.3) 1px,
+        transparent 1px
+      ),
+      linear-gradient(180deg, rgba(232, 232, 232, 0.3) 1px, transparent 1px);
+    background-size: 20px 20px; /* Adjust the size of the boxes (20x20 pixels) */
+    scroll-behavior: smooth;
+  }
+  .engineering-page{
+    margin-top: 100px;
+  }
+  .engineering-title{
+    color: #000;
+    text-align: center;
+    padding: 16px 0 24px;
+    font-family: 'Amatic SC', cursive; 
+    font-size: 40px;
+    font-weight: 900;
+  }
+  .engineering-point{
+    margin: 2em 0;
+  }
+  .engineering-head{
+    color: #000;
+    font-family: 'Amatic SC', cursive; 
+    font-weight: bold;
+    text-align: left;
+  }
+  .engineering-content{
+    color: #603b0f;
+    text-align: justify;
+    font-family: DM Sans;
+    font-size: 16px;
+    font-style: normal;
+    font-weight: 400;
+    line-height: 24px;
+  }
+  #engineering-page{
+    color: #603b0f;
+    text-decoration: none;
+  }
+  
+  h3{
+      font-family: 'Amatic SC', cursive;
+      font-size: 52px;
+      font-weight: bold;
+      text-align:center
+    }
 
-<div class="row mt-4">
+</style>
+<div class="engineering-page">
+  <div class="engineering-title">
+    <h3><b>ENGINEERING</b></h3>
+  </div>
+  </section>
+  <section class="engineering-container">
+    <div class="engineering-point">
+      <h2 class="engineering-head">Laccase</h2>
+      <p class="engineering-content">
+      <b>Design:</b> This part consists of a pH-inducible promoter, secretory signal peptide, laccase enzyme-coding sequence, a Tandem GS linker, and a reporter gene. The pH-inducible promoter, Asr (which stands for acid shock RNA), gets activated in the pH range of 3.5-5.5. With the help of the secretory signal peptide, the laccase enzyme is secreted extracellularly. In order to confirm the secretion of the laccase enzyme at the laboratory level, we added the reporter gene (CFP) in fusion with the laccase gene using a 13 Tandem GS linker.
+    </p>
+    </div>
+    <div class="engineering-point">
+      <h2 class="engineering-head">BEST EDUCATION AND COMMUNICATION</h2>
+      <p class="engineering-content">
+        From designing captivating educational modules and interactive workshops to effectively communicating our project, we've consistently strived to bridge the gap between science and society. Our team's ability to convey complex scientific concepts with clarity and enthusiasm has not only enriched our own iGEM experience but has also empowered us to inspire and educate others, including school and college students and the public. We believe that our dedication to education and communication sets us apart, making us deserving candidates for the Best Education and Communication Award. Go to our <a href="https://2023.igem.wiki/svce-chennai/human-practices" id="education-page">Education</a> page!
+      </p>
+    </div>
+    <div class="engineering-point">
+      <h2 class="engineering-head">NEW BASIC PART</h2>
+      <p class="engineering-content">
+        The new basic part we submitted to the registry is a nitroreductase enzyme, which catalyzes the conversion of nitro to amino groups. A specific NO<sub>2</sub> group in an aromatic compound is reduced to NH<sub>2</sub> by a 2-electron transfer mechanism. This is type-1 nitroreductase, which is oxygen-insensitive. This can reduce nitro compounds in the presence of oxygen. This can be used for the environmental degradation of nitroaromatic compounds. This part has been characterized and uploaded to the Parts Registry for future iGEM teams to use. Take a look at our New Basic Part:<a href="https://parts.igem.org/wiki/index.php?title=Part:BBa_K4864000" target="_blank">BBa_K4864000</a>
+      </p>
+    </div>
+  </section>
+</div>
+<script>
+  function scrollToDiv(section) {
+    const div = document.querySelector(`.awards-point:nth-child(${section})`);
+    div.scrollIntoView({ behavior: 'smooth' });
+  }
+</script>
+<!--<div class="row mt-4">
   <div class="col">
     <div class="bd-callout bd-callout-info">
       <h4>Silver Medal Criterion #1</h4>
@@ -15,6 +109,6 @@
       <p>Please see the <a href="https://competition.igem.org/judging/medals">2023 Medals Page</a> for more information.</p>
     </div>
   </div>
-</div>
+</div>-->
 
 {% endblock %}
-- 
GitLab