Difference between revisions of "Template:Melbourne"

Line 1: Line 1:
 
<html>
 
<html>
 
 
<script>
 
<script>
// When the user scrolls the page, execute myFunction
+
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
window.onscroll = function() {myFunction()};
+
  
// Get the navbar
+
// When the user scrolls down 20px from the top of the document, slide down the navbar
var navbar = document.getElementById("navbar");
+
// When the user scrolls to the top of the page, slide up the navbar (50px out of the top view)
 +
window.onscroll = function() {scrollFunction()};
  
// Get the offset position of the navbar
+
function scrollFunction() {
var sticky = navbar.offsetTop;
+
   if (document.body.scrollTop > 20 || document.documentElement.scrollTop > 20) {
 
+
     document.getElementById("navbar").style.top = "0";
// Add the sticky class to the navbar when you reach its scroll position. Remove "sticky" when you leave the scroll position
+
function myFunction() {
+
   if (window.pageYOffset >= sticky) {
+
     navbar.classList.add("sticky")
+
  } else {
+
    navbar.classList.remove("sticky");
+
 
   }
 
   }
 
}
 
}
  
</script>
+
  
 +
$(document).ready(function() {
  
<style>
+
$("#HQ_page").attr('id','');
/* Style the navbar */
+
#navbar {
+
  overflow: hidden;
+
  background-color: #333;
+
}
+
  
/* Navbar links */
 
#navbar a {
 
  float: left;
 
  display: block;
 
  color: #f2f2f2;
 
  text-align: center;
 
  padding: 14px;
 
  text-decoration: none;
 
}
 
  
/* Page content */
+
//highlight current page on the menu
.content {
+
highlight_current_page_menu();
  padding: 16px;
+
 
}
+
//accessing submenus
 +
$(".menu_item").click(function(){
 +
$(".submenu_control_icon", this).toggleClass("open");
 +
$(this).next(".submenu").fadeToggle(400);
 +
});
 +
 
 +
//mobile menu access
 +
$(".igem_2018_team_mobile_bar").click(function(){
 +
$(this).next().toggleClass("displaying_menu");
 +
});
 +
 
 +
});
 +
 
 +
 
 +
function highlight_current_page_menu() {
 +
 
 +
var page_url="https://2018.igem.org/";
 +
page_url = page_url + wgPageName;
 +
$("a[href$='"+ page_url +"']").children().addClass("current_page");
 +
 
 +
//if the page is in a submenu, open the submenu and make the appropiate changes
 +
if( $( ".current_page" ).hasClass( "submenu_item" )){
 +
 
 +
$(".current_page").parent().parent().fadeToggle(600);
 +
$(".current_page").parent().parent().prev().addClass("current_page");
 +
$(".menu_item.current_page > .submenu_control_icon").toggleClass("open");
 +
 
 +
}
 +
}
 +
 
 +
 
 +
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
 +
</script>
 +
 
 +
 
 +
<style>
 +
/**************************************************************************************************************************************************************************************************/
  
/* The sticky class is added to the navbar with JS when it reaches its scroll position */
 
.sticky {
 
  position: fixed;
 
  top: 0;
 
  width: 100%;
 
}
 
  
/* Add some top padding to the page content to prevent sudden quick movement (as the navigation bar gets a new position at the top of the page (position:fixed and top:0) */
 
.sticky + .content {
 
  padding-top: 60px;
 
}
 
  
/*********ORI*********/
 
 
/**************************************************************************************************************************************************************************************************/
 
/**************************************************************************************************************************************************************************************************/
 
/* DEFAULT WIKI SETTINGS */
 
/* DEFAULT WIKI SETTINGS */
Line 75: Line 80:
  
  
 
+
#navbar {
 
+
    background-color: #333; /* Black background color */
 
+
    position: fixed; /* Make it stick/fixed */
 
+
    top: 80px; /* Hide the navbar 50 px outside of the top view */
/* Add a black background color to the top navigation */
+
    width: 100%; /* Full width */
.topnav {
+
     transition: top 0.3s; /* Transition effect when sliding down (and up) */
     background-color: #333;
+
     padding-left: 50px;
     overflow: hidden;
+
 
}
 
}
  
/* 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;
+
     color: white;
 
     text-align: center;
 
     text-align: center;
     padding: 14px 16px;
+
     padding: 15px;
 
     text-decoration: none;
 
     text-decoration: none;
    font-size: 17px;
 
 
}
 
}
  
/* Add an active class to highlight the current page */
+
#navbar a:hover {
.active {
+
    background-color: #4CAF50;
+
    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;
+
    display: block;
+
    text-align: left;
+
}
+
 
+
/* 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 */
+
.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 206: Line 111:
 
/*this wraps the whole of the menu*/
 
/*this wraps the whole of the menu*/
 
.igem_2018_team_menu {
 
.igem_2018_team_menu {
background-color: #acc7dc;
+
background-color: #acc7dc;  
 
border-left: 1px solid #c4baba;
 
border-left: 1px solid #c4baba;
 
display:block;
 
display:block;
Line 629: Line 534:
  
 
/**************************************************************************************************************************************************************************************************/
 
/**************************************************************************************************************************************************************************************************/
 +
  
  
Line 635: Line 541:
 
</style>
 
</style>
  
 +
 +
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 +
<!--- THIS IS WHERE THE HTML BEGINS --->
 +
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
  
 
<head>
 
<head>
Line 644: Line 554:
  
  
<body>
+
 
 +
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 +
<!--- Menu --->
 +
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 
<div id="navbar">
 
<div id="navbar">
 
   <a href="#home">Home</a>
 
   <a href="#home">Home</a>
Line 650: Line 563:
 
   <a href="#contact">Contact</a>
 
   <a href="#contact">Contact</a>
 
</div>
 
</div>
 +
 +
 +
 +
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 +
<!--- Content of the page  --->
 +
<!------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------->
 +
  
 
<div class="igem_2018_team_content">
 
<div class="igem_2018_team_content">
Line 655: Line 575:
 
<div class="clear extra_space"></div>
 
<div class="clear extra_space"></div>
 
<div class="clear extra_space"></div>
 
<div class="clear extra_space"></div>
</body>
 
 
 
 
</html>
 

Revision as of 13:22, 6 October 2018