Difference between revisions of "Template:Melbourne"

 
(60 intermediate revisions by 2 users not shown)
Line 3: Line 3:
 
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
  
// When the user scrolls the page, execute myFunction
 
window.onscroll = function() {myFunction()};
 
  
// Get the navbar
 
var navbar = document.getElementById("topnav");
 
  
// Get the offset position of the navbar
 
var sticky = navbar.offsetTop;
 
  
// Add the sticky class to the navbar when you reach its scroll position. Remove "sticky" when you leave the scroll position
+
// When the user scrolls down 20px from the top of the document, slide down the navbar
function myFunction() {
+
// When the user scrolls to the top of the page, slide up the navbar (50px out of the top view)
   if (window.pageYOffset >= sticky) {
+
window.onscroll = function() {scrollFunction()};
     navbar.classList.add("sticky")
+
 
  } else {
+
function scrollFunction() {
    navbar.classList.remove("sticky");
+
   if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
 +
     document.getElementById("navbar").style.top = "18px";
 
   }
 
   }
 
}
 
}
  
 
 
/* Toggle between adding and removing the "responsive" class to topnav when the user clicks on the icon */
 
function myFunction() {
 
    var x = document.getElementById("myTopnav");
 
    if (x.className === "topnav") {
 
        x.className += " responsive";
 
    } else {
 
        x.className = "topnav";
 
    }
 
}
 
 
 
  
Line 72: Line 56:
 
}
 
}
  
/* Open */
 
function openNav() {
 
    document.getElementById("myNav").style.height = "100%";
 
}
 
 
/* Close */
 
function closeNav() {
 
    document.getElementById("myNav").style.height = "0%";
 
}
 
  
 
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
Line 89: Line 64:
 
/**************************************************************************************************************************************************************************************************/
 
/**************************************************************************************************************************************************************************************************/
  
/* The Overlay (background) */
 
.overlay {
 
    /* Height & width depends on how you want to reveal the overlay (see JS below) */   
 
    height: 100%;
 
    width: 0;
 
    position: fixed; /* Stay in place */
 
    z-index: 1; /* Sit on top */
 
    left: 0;
 
    top: 0;
 
    background-color: rgb(0,0,0); /* Black fallback color */
 
    background-color: rgba(0,0,0, 0.9); /* Black w/opacity */
 
    overflow-x: hidden; /* Disable horizontal scroll */
 
    transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
 
}
 
  
/* Position the content inside the overlay */
 
.overlay-content {
 
    position: relative;
 
    top: 25%; /* 25% from the top */
 
    width: 100%; /* 100% width */
 
    text-align: center; /* Centered text/links */
 
    margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
 
}
 
 
/* The navigation links inside the overlay */
 
.overlay a {
 
    padding: 8px;
 
    text-decoration: none;
 
    font-size: 36px;
 
    color: #818181;
 
    display: block; /* Display block instead of inline */
 
    transition: 0.3s; /* Transition effects on hover (color) */
 
}
 
 
/* When you mouse over the navigation links, change their color */
 
.overlay a:hover, .overlay a:focus {
 
    color: #f1f1f1;
 
}
 
 
/* Position the close button (top right corner) */
 
.overlay .closebtn {
 
    position: absolute;
 
    top: 20px;
 
    right: 45px;
 
    font-size: 60px;
 
}
 
 
/* When the height of the screen is less than 450 pixels, change the font-size of the links and position the close button again, so they don't overlap */
 
@media screen and (max-height: 450px) {
 
    .overlay a {font-size: 20px}
 
    .overlay .closebtn {
 
        font-size: 40px;
 
        top: 15px;
 
        right: 35px;
 
    }
 
}
 
  
 
/**************************************************************************************************************************************************************************************************/
 
/**************************************************************************************************************************************************************************************************/
Line 161: Line 81:
  
  
 +
.nav_text{
 +
font-size: 18px;
 +
margin-top: 10px;
 +
padding-top: 35px;
 +
padding-bottom: 35px;
 +
}
  
 +
.nav_icon {
 +
padding-top: 10px;
 +
padding-bottom: 5px;
 +
}
  
  
  
 
+
#navbar {
 
+
    background-color: #333; /* Black background color */
/* Add a black background color to the top navigation */
+
    position: fixed; /* Make it stick/fixed */
.topnav {
+
    top: 19px; /* Hide the navbar 50 px outside of the top view */
     background-color: #333;
+
     width: 100%; /* Full width */
     overflow: hidden;
+
     transition: top 0.3s; /* Transition effect when sliding down (and up) */
 
}
 
}
  
/* Style the links inside the navigation bar */
+
/* Style the navbar links */
.topnav a {
+
#navbar a {
 
     float: left;
 
     float: left;
 
     display: block;
 
     display: block;
    color: #f2f2f2;
 
    text-align: center;
 
    padding: 14px 16px;
 
    text-decoration: none;
 
    font-size: 17px;
 
}
 
 
/* Add an active class to highlight the current page */
 
.active {
 
    background-color: #4CAF50;
 
 
     color: white;
 
     color: white;
}
 
 
/* Hide the link that should open and close the topnav on small screens */
 
.topnav .icon {
 
    display: none;
 
}
 
 
/* Dropdown container - needed to position the dropdown content */
 
.dropdown {
 
    float: left;
 
    overflow: hidden;
 
}
 
 
/* Style the dropdown button to fit inside the topnav */
 
.dropdown .dropbtn {
 
    font-size: 17px;
 
    border: none;
 
    outline: none;
 
    color: white;
 
    padding: 14px 16px;
 
    background-color: inherit;
 
    font-family: inherit;
 
    margin: 0;
 
}
 
 
/* Style the dropdown content (hidden by default) */
 
.dropdown-content {
 
    display: none;
 
    position: absolute;
 
    background-color: #f9f9f9;
 
    min-width: 160px;
 
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
 
    z-index: 1;
 
}
 
 
/* Style the links inside the dropdown */
 
.dropdown-content a {
 
    float: none;
 
    color: black;
 
    padding: 12px 16px;
 
 
     text-decoration: none;
 
     text-decoration: none;
    display: block;
+
width: 20%;
    text-align: left;
+
text-align: center;
}
+
  
/* Add a dark background on topnav links and the dropdown button on hover */
 
.topnav a:hover, .dropdown:hover .dropbtn {
 
    background-color: #555;
 
    color: white;
 
 
}
 
}
  
/* Add a grey background to dropdown links on hover */
+
#navbar a:hover {
.dropdown-content a:hover {
+
 
     background-color: #ddd;
 
     background-color: #ddd;
 
     color: black;
 
     color: black;
 
}
 
}
  
/* Show the dropdown menu when the user moves the mouse over the dropdown button */
 
.dropdown:hover .dropdown-content {
 
    display: block;
 
}
 
  
/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
 
@media screen and (max-width: 600px) {
 
  .topnav a:not(:first-child), .dropdown .dropbtn {
 
    display: none;
 
  }
 
  .topnav a.icon {
 
    float: right;
 
    display: block;
 
  }
 
}
 
 
/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
 
@media screen and (max-width: 600px) {
 
  .topnav.responsive {position: relative;}
 
  .topnav.responsive a.icon {
 
    position: absolute;
 
    right: 0;
 
    top: 0;
 
  }
 
  .topnav.responsive a {
 
    float: none;
 
    display: block;
 
    text-align: left;
 
  }
 
  .topnav.responsive .dropdown {float: none;}
 
  .topnav.responsive .dropdown-content {position: relative;}
 
  .topnav.responsive .dropdown .dropbtn {
 
    display: block;
 
    width: 100%;
 
    text-align: left;
 
  }
 
}
 
  
  
Line 741: Line 579:
 
<!--- Menu --->
 
<!--- Menu --->
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
<!-- The overlay -->
 
<div id="myNav" class="overlay">
 
  
  <!-- Button to close the overlay navigation -->
 
  <a href="javascript:void(0)" class="closebtn" onclick="closeNav()">&times;</a>
 
  
  <!-- Overlay content -->
+
<div id="navbar">
  <div class="overlay-content">
+
    <a href="#">About</a>
+
    <a href="#">Services</a>
+
    <a href="#">Clients</a>
+
    <a href="#">Contact</a>
+
  </div>
+
  
</div>
 
  
<!-- Use any element to open/show the overlay navigation menu -->
 
<span onclick="openNav()">open</span>
 
  
  
<div class="topnav" id="myTopnav">
+
<a href="https://2018.igem.org/Team:Melbourne" class="nav_item, nav_text">Home</a>
  <a href="#home" class="active">Home</a>
+
   <a href="https://2018.igem.org/Team:Melbourne/Team" class="nav_item, nav_text">Team</a>
   <a href="#news">News</a>
+
<a href="https://igem.org/2018_Judging_Form?team=Melbourne" class="nav_item, nav_icon">
  <a href="#contact">Contact</a>
+
<img src="http://www.ampc.ms.unimelb.edu.au/srg/index_files/UOM.png" width="115px", height="95px">
  <div class="dropdown">
+
</a>
    <button class="dropbtn">Dropdown
+
  <a href="https://2018.igem.org/Team:Melbourne/Project" class="nav_item, nav_text">Project</a>
      <i class="fa fa-caret-down"></i>
+
   <a href="https://2018.igem.org/Team:Melbourne/Experiment" class="nav_item, nav_text">Experiment</a>
    </button>
+
 
    <div class="dropdown-content">
+
 
      <a href="#">Link 1</a>
+
 
      <a href="#">Link 2</a>
+
      <a href="#">Link 3</a>
+
    </div>
+
  </div>
+
  <a href="#about">About</a>
+
   <a href="javascript:void(0);" class="icon" onclick="myFunction()">&#9776;</a>
+
 
</div>
 
</div>
 +
 +
  
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 
<!--- Content of the page  --->
 
<!--- Content of the page  --->
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 
 
<div class="igem_2018_team_content">
 
<div class="igem_2018_team_column_wrapper">
 
<div class="clear extra_space"></div>
 
<div class="clear extra_space"></div>
 

Latest revision as of 13:15, 17 October 2018