Difference between revisions of "Team:IIT Kanpur"

 
(384 intermediate revisions by 7 users not shown)
Line 1: Line 1:
{{IIT_Kanpur}}
+
{{Template:IIT_Kanpur}}
 +
 
 +
<!-------------------------->
 
<html>
 
<html>
 +
<head>
 +
<meta name="viewport" content="width=device-width, initial-scale=1">
 +
<style>
 +
#overlay {
 +
    position: fixed;
 +
    display: none;
 +
    width: 100%;
 +
    height: 100%;
 +
    top: 0;
 +
    left: 0;
 +
    right: 0;
 +
    bottom: 0;
 +
    background-color: rgba(255,255,255,1);
 +
    z-index: 2;
 +
    cursor: pointer;
 +
}
  
 +
#text{
 +
    position: absolute;
 +
    top: 20%;
 +
    left: 50%;
 +
    font-size: 50px;
 +
    color: black;
 +
    align: right;
 +
    transform: translate(-50%,-50%);
 +
    -ms-transform: translate(-50%,-50%);
 +
}
 +
</style>
 +
</head>
 +
<body>
  
 +
<div id="overlay" onclick="off()">
 +
<div id="text">Won SILVER @ iGEM 2018</div>
 +
  <img src="https://static.igem.org/mediawiki/2018/f/fa/T--IIT_Kanpur--Banner.png" style="width:30vw;margin:15vw 35vw">
 +
</div>
  
 +
<script>
 +
window.onload = function on() {
 +
    document.getElementById("overlay").style.display = "block";
 +
}
  
<div class="column full_size" >
+
function off() {
<h1> Welcome to iGEM 2018! </h1>
+
    document.getElementById("overlay").style.display = "none";
<p>Your team has been approved and you are ready to start the iGEM season! </p>
+
}
 +
</script>
 +
   
 +
</body>
 +
</html>  
  
  
<img src="https://2018.igem.org/File:T--IIT_Kanpur--logo.png">
+
<!------------------------------->
+
  
</div>
 
  
 +
<html>
 +
<head>
  
<div class="column full_size" >
+
  
<h3>Before you start</h3>
+
<!-- THIS IS WHERE THE HTML BEGINS -->
<p> Please read the following pages:</p>
+
<ul>
+
<li>  <a href="https://2018.igem.org/Competition">Competition Hub</a> </li>
+
<li> <a href="https://2018.igem.org/Competition/Deliverables/Wiki">Wiki Requirements page</a></li>
+
<li> <a href="https://2018.igem.org/Resources/Template_Documentation">Template documentation</a></li>
+
</ul>
+
</div>
+
  
  
<div class="clear extra_space"></div>
+
<style>
<div class="line_divider"></div>
+
<div class="clear extra_space"></div>
+
  
 +
body {
 +
background: url('https://static.igem.org/mediawiki/2018/1/10/T--IIT_Kanpur--BackgroundMain.jpg') no-reapeat fixed center;
 +
}
  
  
<div class="column full_size" >
+
/* Slideshow container */
<h3> Styling your wiki </h3>
+
.slideshow-container {
<p>You may style this page as you like or you can simply leave the style as it is. You can easily keep the styling and edit the content of these default wiki pages with your project information and completely fulfill the requirement to document your project.</p>
+
<p>While you may not win Best Wiki with this styling, your team is still eligible for all other awards. This default wiki meets the requirements, it improves navigability and ease of use for visitors, and you should not feel it is necessary to style beyond what has been provided.</p>
+
  
</div>
+
  margin: auto;
 +
  position: relative;
 +
 
 +
}
  
 +
/* Hide the images by default */
 +
.mySlides {
 +
    display: none;
 +
}
  
 +
/* Next & previous buttons */
 +
.prev, .next {
 +
  cursor: pointer;
 +
  position: absolute;
 +
  top: 50%;
 +
  margin-top: -22px;
 +
  width: auto;
 +
 
 +
  padding: 16px;
 +
  color: #CCCCCC;
 +
  font-weight: bold;
 +
  font-size: 30px;
 +
  transition: 0.6s ease;
 +
  border-radius: 0 3px 3px 0;
 +
}
  
 +
/* Position the "next button" to the right */
 +
.next {
 +
  right: 0;
 +
  border-radius: 3px 0 0 3px;
 +
}
  
<div class="clear extra_space"></div>
+
/* On hover, add a black background color with a little bit see-through */
 +
.prev:hover, .next:hover {
 +
  background-color: rgba(83,77,77,0.80);
 +
}
  
 +
/* Caption text */
 +
.text {
 +
  color: #00000;
 +
  font-size: 40px;
 +
  padding: 8px 12px;
 +
  position: absolute;
 +
  bottom: 8px;
 +
  width: 100%;
 +
  text-align: center;
 +
}
  
 +
/* Number text (1/3 etc) */
 +
.numbertext {
 +
  color: #FFFFFF;
 +
  font-size: 4px;
 +
  padding: 8px 12px;
 +
  position: absolute;
 +
  top: 0;
 +
}
  
<div class="column third_size" >
+
/* The dots/bullets/indicators */
 +
.dot {
 +
  cursor: pointer;
 +
  height: 25px;
 +
  width: 25px;
 +
  margin: 0 2px;
 +
  background-color: #bbb;
 +
  border-radius: 50%;
 +
  display: inline-block;
 +
  transition: background-color 1.5s ease;
 +
}
  
<h3> Uploading pictures and files </h3>
+
.active, .dot:hover {
<p> You must upload any pictures and files to the iGEM 2018 server. Remember to keep all your pictures and files within your team's namespace or at least include your team's name in the file name. </p>
+
  background-color: #717171;
 +
}
  
 +
/* Fading animation */
 +
.fade {
 +
  -webkit-animation-name: fade;
 +
  -webkit-animation-duration: 3s;
 +
  animation-name: fade;
 +
  animation-duration: 3s;
 +
}
  
<p>When you upload, set the "Destination Filename" to <b> T--YourOfficialTeamName--NameOfFile.jpg</b>. (If you don't do this, someone else might upload a different file with the same "Destination Filename", and your file would be erased!)</p>
+
@-webkit-keyframes fade {
 +
  from {opacity: .4}
 +
  to {opacity: 1}
 +
}
  
<div class="button_link">
+
@keyframes fade {
<a href="https://2018.igem.org/Special:Upload">
+
  from {opacity: .4}
UPLOAD FILES
+
  to {opacity: 1}
</a>
+
}
</div>
+
  
</div>
+
.c_h {
 +
  z-index: 1000px;
 +
  align: center;
 +
  background: black linear-gradient(to bottom, black, #5c83e8 50%, #93aced) no-repeat 99% center;
 +
}
  
<div class="column third_size" >
+
img.page {
<h3> Wiki template information </h3>
+
  display: block;
<p>We have created these wiki template pages to help you get started and to help you think about how your team will be evaluated. You can find a list of all the pages tied to awards here at the <a href="https://2018.igem.org/Judging/Pages_for_Awards">Pages for awards</a> link. You must edit these pages to be evaluated for medals and awards, but ultimately the design, layout, style and all other elements of your team wiki is up to you!</p>
+
  margin-left: auto;
 +
  margin-right: auto;
 +
}
  
</div>
+
.collapsible {
 +
  background-color: #6078e0;
 +
  color: white;
 +
  cursor: pointer;
 +
  padding: 18px;
 +
  width: 100%;
 +
  border: none;
 +
  text-align: left;
 +
  outline: none;
 +
  font-size: 18px;
 +
}
  
 +
.active, .collapsible:hover {
 +
  background-color: #5465af;
 +
}
  
 +
.contentcollap {
 +
  padding: 0 18px;
 +
  max-height: 0;
 +
  overflow: hidden;
 +
  transition: max-height 0.2s ease-out;
 +
  background-color: #73cebd;
 +
}
  
<div class="column third_size" >
+
</style>
<div class="highlight decoration_B_full">
+
<h3> Editing your wiki </h3>
+
<p>On this page you can document your project, introduce your team members, document your progress and share your iGEM experience with the rest of the world! </p>
+
<p>Use WikiTools - Edit in the black menu bar to edit this page</p>
+
  
<div class="button_link">
 
<a href="https://2018.igem.org/wiki/index.php?title=Team:IIT_Kanpur&action=edit">
 
EDIT PAGE
 
</a>
 
</div>
 
  
  
</div>
+
  </head>
</div>
+
  
 +
  <body>
  
 +
<!-- Slideshow container -->
 +
<div class="slideshow-container">
  
 +
  <!-- Full-width images with number and caption text -->
 +
  <div class="mySlides fade",div style="text-align: center">
 +
    <img src="https://static.igem.org/mediawiki/2018/0/06/T--IIT_Kanpur--project_logo.png" style="width:98%;height:auto;background:black;">
 +
    <div class="text"></div>
 +
  </div>
 +
  <div class="mySlides fade">
  
 +
    <img src="https://static.igem.org/mediawiki/2018/2/2f/T--IIT_Kanpur--PAGE_1.png" style="width:100%;height:auto;">
 +
    <div class="text"><a href=""></a></div>
 +
  </div>
  
<div class="clear extra_space"></div>
+
  <div class="mySlides fade">
<div class="line_divider"></div>
+
    <img src="https://static.igem.org/mediawiki/2018/2/2d/T--IIT_Kanpur--PAGE_2.png" style="width:100%;height:auto;">
<div class="clear extra_space"></div>
+
    <div class="text"><a href=""></a></div>
 +
  </div>
  
 +
  <div class="mySlides fade">
 +
    <img src="https://static.igem.org/mediawiki/2018/5/51/T--IIT_Kanpur--page_3_f.png" style="width:100%;height:auto;">
 +
    <div class="text"></div>
 +
  </div>
  
 +
  <!-- Next and previous buttons -->
 +
  <a class="prev" onclick="plusSlides(-1)">&#10094;</a>
 +
  <a class="next" onclick="plusSlides(1)">&#10095;</a>
 +
</div>
 +
<br>
  
<div class="column two_thirds_size" >
+
<!-- The dots/circles -->
<h3>Tips</h3>
+
<div style="text-align:center">
<p>This wiki will be your team’s first interaction with the rest of the world, so here are a few tips to help you get started: </p>
+
  <span class="dot" onclick="currentSlide(1)"></span>  
<ul>
+
  <span class="dot" onclick="currentSlide(2)"></span>  
<li>State your accomplishments! Tell people what you have achieved from the start. </li>
+
  <span class="dot" onclick="currentSlide(3)"></span>
<li>Be clear about what you are doing and how you plan to do this.</li>
+
  <span class="dot" onclick="currentSlide(4)"></span>
<li>You have a global audience! Consider the different backgrounds that your users come from.</li>
+
<li>Make sure information is easy to find; nothing should be more than 3 clicks away.  </li>
+
<li>Avoid using very small fonts and low contrast colors; information should be easy to read.  </li>
+
<li>Start documenting your project as early as possible; don’t leave anything to the last minute before the Wiki Freeze. For a complete list of deadlines visit the <a href="https://2018.igem.org/Calendar">iGEM 2018 calendar</a> </li>
+
<li>Have lots of fun! </li>
+
</ul>  
+
 
</div>
 
</div>
 +
<button class="collapsible" style="text-align:center;text: 30px;">SEE OUR STORY!!</button>
 +
<div class ="c_h contentcollap" id='comic_holder'>
 +
<br><br>
 +
<img src="https://static.igem.org/mediawiki/2018/f/ff/T--IIT_Kanpur--Comic01.jpg" style="width:49vw;background:black;" class='page'><br><br>
 +
<img src="https://static.igem.org/mediawiki/2018/0/06/T--IIT_Kanpur--Comic02.jpg" style="width:49vw;background:black;" class='page'><br><br>
 +
<img src="https://static.igem.org/mediawiki/2018/5/58/T--IIT_Kanpur--Comic03.jpg" style="width:49vw;background:black;" class='page'><br><br>
 +
<a href='https://2018.igem.org/Team:IIT_Kanpur/Team'><img src="https://static.igem.org/mediawiki/2018/e/e8/T--IIT_Kanpur--Comic04.jpg" style="width:49vw;background:black;" class='page'><br><br></a>
 +
</div>
 +
<script>
 +
var slideIndex = 1;
 +
showSlides(slideIndex);
  
 +
// Next/previous controls
 +
function plusSlides(n) {
 +
  showSlides(slideIndex += n);
 +
}
  
<div class="column third_size">
+
function expandComics() {
<div class="highlight decoration_A_full">
+
  document.getElementById('comic_holder').visibility=visible;
<h3>Inspiration</h3>
+
}
<p> You can also view other team wikis for inspiration! Here are some examples:</p>
+
 
<ul>
+
// Thumbnail image controls
<li> <a href="https://2014.igem.org/Team:SDU-Denmark/"> 2014 SDU Denmark </a> </li>
+
function currentSlide(n) {
<li> <a href="https://2014.igem.org/Team:Aalto-Helsinki">2014 Aalto-Helsinki</a> </li>
+
  showSlides(slideIndex = n);
<li> <a href="https://2014.igem.org/Team:LMU-Munich">2014 LMU-Munich</a> </li>
+
}
<li> <a href="https://2014.igem.org/Team:Michigan"> 2014 Michigan</a></li>
+
 
<li> <a href="https://2014.igem.org/Team:ITESM-Guadalajara">2014 ITESM-Guadalajara </a></li>
+
function showSlides(n) {
<li> <a href="https://2014.igem.org/Team:SCU-China"> 2014 SCU-China </a></li>
+
  var i;
</ul>
+
  var slides = document.getElementsByClassName("mySlides");
</div>
+
  var dots = document.getElementsByClassName("dot");
</div>
+
  if (n > slides.length) {slideIndex = 1}
 +
  if (n < 1) {slideIndex = slides.length}
 +
  for (i = 0; i < slides.length; i++) {
 +
      slides[i].style.display = "none";
 +
  }
 +
  for (i = 0; i < dots.length; i++) {
 +
      dots[i].className = dots[i].className.replace(" active", "");
 +
  }
 +
  slides[slideIndex-1].style.display = "block";
 +
  dots[slideIndex-1].className += " active";
 +
}
 +
</script>
 +
 
 +
<script>
 +
var coll = document.getElementsByClassName("collapsible");
 +
var i;
  
 +
for (i = 0; i < coll.length; i++) {
 +
  coll[i].addEventListener("click", function() {
 +
    this.classList.toggle("active");
 +
    var content = this.nextElementSibling;
 +
    if (content.style.maxHeight){
 +
      content.style.maxHeight = null;
 +
    } else {
 +
      content.style.maxHeight = content.scrollHeight + "px";
 +
    }
 +
  });
 +
}
 +
</script>
  
 +
  </body>
  
  
 
</html>
 
</html>
 +
{{Template:IIT_Kanpur/Footer}}

Latest revision as of 09:34, 6 December 2018

Won SILVER @ iGEM 2018