Difference between revisions of "Template:IIT Delhi"

(Prototype team template page)
 
Line 1: Line 1:
<html>
+
@charset "UTF-8";
  
<script>
+
@font-face {
 +
  font-family: 'Lato';
 +
  font-style: normal;
 +
  font-weight: 300;
 +
  src: local('Lato Light'), local('Lato-Light'), url(http://fonts.gstatic.com/s/lato/v14/IY9HZVvI1cMoAHxvl0w9LVKPGs1ZzpMvnHX-7fPOuAc.woff2) format('woff2');
 +
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
 +
}
 +
/* latin */
 +
@font-face {
 +
  font-family: 'Lato';
 +
  font-style: normal;
 +
  font-weight: 300;
 +
  src: local('Lato Light'), local('Lato-Light'), url(http://fonts.gstatic.com/s/lato/v14/22JRxvfANxSmnAhzbFH8PgLUuEpTyoUstqEm5AMlJo4.woff2) format('woff2');
 +
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
 +
}
 +
/* latin-ext */
 +
@font-face {
 +
  font-family: 'Lato';
 +
  font-style: normal;
 +
  font-weight: 400;
 +
  src: local('Lato Regular'), local('Lato-Regular'), url(http://fonts.gstatic.com/s/lato/v14/8qcEw_nrk_5HEcCpYdJu8BTbgVql8nDJpwnrE27mub0.woff2) format('woff2');
 +
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
 +
}
 +
/* latin */
 +
@font-face {
 +
  font-family: 'Lato';
 +
  font-style: normal;
 +
  font-weight: 400;
 +
  src: local('Lato Regular'), local('Lato-Regular'), url(http://fonts.gstatic.com/s/lato/v14/MDadn8DQ_3oT6kvnUq_2r_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
 +
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;
 +
}
  
// This is the jquery part of your template. 
+
body {
// Try not modify any of this code too much since it makes your menu work.
+
background: #fff;
 +
}
  
$(document).ready(function() {
+
body, input, select, textarea {
 +
color: #444;
 +
font-family: "Lato", Helvetica, sans-serif;
 +
font-size: 15pt;
 +
font-weight: 300;
 +
line-height: 1.65em;
 +
}
  
$("#HQ_page").attr('id','');
+
a {
 +
color: #4dac71;
 +
text-decoration: underline;
 +
}
  
// call the functions that control the menu
+
a:hover {
menu_functionality();  
+
text-decoration: none;
hide_show_menu();
+
}
  
 +
strong, b {
 +
color: #eee;
 +
font-weight: 400;
 +
}
  
 +
em, i {
 +
font-style: italic;
 +
}
  
//this function controls the expand and collapse buttons of the menu and changes the +/- symbols
+
p {
function menu_functionality() {
+
margin: 0 0 2em 0;
 +
}
  
//when clicking on a "menu_button", it will change the "+/-" accordingly and it will show/hide the corresponding submenu
+
h1, h2, h3, h4, h5, h6 {
$(".menu_button").click(function(){
+
color: #666;
 
+
font-weight: 300;
// add or remove the class "open" , this class holds the "-"
+
line-height: 1em;
$(this).children().toggleClass("open");
+
margin: 0 0 1em 0;
// show or hide the submenu
+
}
$(this).next('.submenu_wrapper').fadeToggle(400);
+
});
+
 
+
// when the screen size is smaller than 800px, the display_menu_control button appears and will show/hide the whole menu
+
$("#display_menu_control").click(function(){
+
$('#menu_content').fadeToggle(400);
+
});
+
  
// call the current page highlight function
+
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
highlight_current_page();
+
color: inherit;
 +
text-decoration: none;
 
}
 
}
  
 +
h2 {
 +
font-size: 1.75em;
 +
line-height: 1.5em;
 +
}
  
// call the highlight current page function to show it on the menu with a different background color
+
h3 {
function highlight_current_page() {
+
font-size: 1.35em;
 +
line-height: 1.5em;
 +
}
  
// select a page from the menu based on the id assigned to it and the current page name and add the class "current page" to make it change background color
+
h4 {
$("#"+  wgPageName.substring(wgPageName.lastIndexOf("/")+1, wgPageName.length ) + "_page").addClass("current_page");
+
font-size: 1.1em;
 +
line-height: 1.5em;
 +
}
  
// now that the current_page class has been added to a menu item, make the submenu fade in
+
h5 {
$(".current_page").parents(".submenu_wrapper").fadeIn(400);
+
font-size: 0.9em;
// change the +/- symbol of the corresponding menu button
+
line-height: 1.5em;
$(".current_page").parents(".submenu_wrapper").prev().children().toggleClass("open");
+
}
+
}
+
  
 +
h6 {
 +
font-size: 0.7em;
 +
line-height: 1.5em;
 +
}
  
 +
sub {
 +
font-size: 0.8em;
 +
position: relative;
 +
top: 0.5em;
 +
}
  
// allow button on the black menu bar to show/hide the side menu
+
sup {
function hide_show_menu() {
+
font-size: 0.8em;
+
position: relative;
// in case you preview mode is selected, the menu is hidden for better visibility
+
top: -0.5em;
if (window.location.href.indexOf("submit") >= 0) {
+
}
$(".igem_2017_menu_wrapper").hide();
+
}
+
  
// if the black menu bar has been loaded
+
hr {
  if (document.getElementById('bars_item')) {
+
border: 0;
 +
border-bottom: medium 1px rgba(144, 144, 144, 0.25);
 +
margin: 2em 0;
 +
}
  
// when the "bars_item" has been clicked
+
hr.major {
$("#bars_item").click(function() {
+
margin: 3em 0;
$("#sideMenu").hide();
+
 
+
// show/hide the menu wrapper
+
$(".igem_2017_menu_wrapper").fadeToggle("100");
+
});
+
  }
+
 
+
// because the black menu bars loads at a different time than the rest of the page, this function is set on a time out so it can run again in case it has not been loaded yet
+
else {
+
    setTimeout(hide_show_menu, 15);
+
}
+
 
}
 
}
  
 +
blockquote {
 +
border-left: solid 4px rgba(144, 144, 144, 0.25);
 +
font-style: italic;
 +
margin: 0 0 2em 0;
 +
padding: 0.5em 0 0.5em 2em;
 +
}
  
});
+
code {
 +
background: rgba(144, 144, 144, 0.075);
 +
border-radius: 4px;
 +
border: solid 1px rgba(144, 144, 144, 0.25);
 +
font-family: "Courier New", monospace;
 +
font-size: 0.9em;
 +
margin: 0 0.25em;
 +
padding: 0.25em 0.65em;
 +
}
  
 +
pre {
 +
-webkit-overflow-scrolling: touch;
 +
font-family: "Courier New", monospace;
 +
font-size: 0.9em;
 +
margin: 0 0 2em 0;
 +
}
  
</script>
+
pre code {
 +
display: block;
 +
line-height: 1.75em;
 +
padding: 1em 1.5em;
 +
overflow-x: auto;
 +
}
  
 +
.align-left {
 +
text-align: left;
 +
}
  
 +
.align-center {
 +
text-align: center;
 +
}
  
 +
.align-right {
 +
text-align: right;
 +
}
  
 +
/* Section/Article */
  
<style>
+
section.special, article.special {
 +
text-align: center;
 +
}
  
 +
header p {
 +
position: relative;
 +
margin: 0 0 1.5em 0;
 +
}
  
 +
header h2 + p {
 +
font-size: 1.25em;
 +
margin-top: -1em;
 +
line-height: 1.5em;
 +
}
  
/***************************************************** DEFAULT WIKI SETTINGS  ****************************************************/
+
header h3 + p {
+
font-size: 1.1em;
/* Clear the default wiki settings */
+
margin-top: -0.8em;
+
line-height: 1.5em;
#home_logo, #sideMenu { display:none; }
+
}
#sideMenu, #top_title, .patrollink  {display:none;}
+
#content { width:100%; padding:0px;  margin-top:-7px; margin-left:0px;}
+
body {background-color:white; }
+
#bodyContent h1, #bodyContent h2, #bodyContent h3, #bodyContent h4, #bodyContent h5 { margin-bottom: 0px; }
+
  
+
header h4 + p,
+
header h5 + p,
+
header h6 + p {
/**************************************************************** MENU ***************************************************************/
+
font-size: 0.9em;
/* Wrapper for the menu */
+
margin-top: -0.6em;
.igem_2017_menu_wrapper {  
+
line-height: 1.5em;
width: 15%;
+
height:100vh;
+
position:fixed;
+
right:0%;
+
padding:0px;
+
float:right;
+
border-left: 1px solid #d3d3d3;
+
background-color:#dddddd;  
+
text-align:left;
+
font-family:Tahoma, Geneva, sans-serif;
+
overflow-y: auto;
+
overflow-x: hidden;
+
 
}
 
}
  
/* this hides the scrollbar to keep view consistency */
+
header.major {
.igem_2017_menu_wrappe::-webkit-scrollbar {  
+
text-align: center;
display: none;  
+
margin-bottom: 3em;
}
+
+
+
/* styling for links in the menu, removes the line under text */
+
.igem_2017_menu_wrapper a { 
+
text-decoration: none;  
+
 
}
 
}
  
 +
header.major h2 {
 +
font-size: 3em;
 +
}
  
/* styling for the images in the menu */
+
header.major p {
.igem_2017_menu_wrapper img {  
+
border-top: medium double rgba(144, 144, 144, 0.25);
width: 100%;
+
display: inline-block;
}
+
padding: 2em 2em 0 2em;
 +
}
  
/* styling for the menu buttons */
+
/* Form */
.igem_2017_menu_wrapper .menu_button {  
+
 
width: 100%;
+
form {
padding: 10px 0px 10px 15px;
+
margin: 0 0 2em 0;
float:left;
+
border-bottom: 1px solid #d3d3d3;
+
font-size: 12px;
+
font-weight: bold;
+
color: #5e5f5f;
+
cursor: pointer;
+
 
}
 
}
  
 
+
label {
.igem_2017_menu_wrapper .menu_bottom_padding {  
+
color: #666;
width: 100%;  
+
display: block;
height: 30px;
+
font-size: 0.9em;
float:left;
+
font-weight: 400;
 +
margin: 0 0 1em 0;
 
}
 
}
  
.menu_button.direct_to_page {
+
input[type="text"],
padding-left: 36px;
+
input[type="password"],
 +
input[type="email"],
 +
select,
 +
textarea {
 +
-moz-appearance: none;
 +
-webkit-appearance: none;
 +
-o-appearance: none;
 +
-ms-appearance: none;
 +
appearance: none;
 +
background: rgba(144, 144, 144, 0.075);
 +
border-radius: 4px;
 +
border: none;
 +
border: solid 1px rgba(144, 144, 144, 0.25);
 +
color: inherit;
 +
display: block;
 +
outline: 0;
 +
padding: 0 1em;
 +
text-decoration: none;
 +
width: 100%;
 
}
 
}
  
 +
input[type="text"]:invalid,
 +
input[type="password"]:invalid,
 +
input[type="email"]:invalid,
 +
select:invalid,
 +
textarea:invalid {
 +
box-shadow: none;
 +
}
  
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon {
+
input[type="text"]:focus,
width:10%;
+
input[type="password"]:focus,
float:left;
+
input[type="email"]:focus,
}
+
select:focus,
 +
textarea:focus {
 +
border-color: #4dac71;
 +
box-shadow: 0 0 0 1px #4dac71;
 +
}
  
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon::before {
+
.select-wrapper {
content: "+"; 
+
}
+
+
.open::before {
+
content: "-" !important; 
+
}
+
+
+
+
/* styling for the menu buttons on hover */
+
.igem_2017_menu_wrapper .menu_button:hover, .igem_2017_menu_wrapper .submenu_button:hover ,  .submenu_button.current_page:hover {  
+
background-color: #3399ff;
+
 
text-decoration: none;
 
text-decoration: none;
color:#ffffff;  
+
display: block;
 +
position: relative;
 
}
 
}
  
/* styling for the menu button when it is the current page */
+
.select-wrapper:before {
.current_page {  
+
content: "";
background-color:#7fc1f7  !important;
+
-moz-osx-font-smoothing: grayscale;
color:#5e5f5f !important;
+
-webkit-font-smoothing: antialiased;
}
+
font-family: FontAwesome;
 +
font-style: normal;
 +
font-weight: normal;
 +
text-transform: none !important;
 +
}
  
 +
.select-wrapper:before {
 +
color: rgba(144, 144, 144, 0.25);
 +
display: block;
 +
height: 2.75em;
 +
line-height: 2.75em;
 +
pointer-events: none;
 +
position: absolute;
 +
right: 0;
 +
text-align: center;
 +
top: 0;
 +
width: 2.75em;
 +
}
  
/* styling for the submenu buttons */
+
.select-wrapper select::-ms-expand {
.igem_2017_menu_wrapper .submenu_button {
+
display: none;
width: 100%;
+
}
padding: 10px 0px 10px 34px;
+
float:left;
+
background-color:#f2f2f2;
+
border-bottom: 1px solid #d3d3d3;
+
font-size: 12px;  
+
color: #5e5f5f;
+
cursor: pointer;
+
}
+
  
/* wrapper for the submenu items, they are hidden by default*/
+
input[type="text"],
.igem_2017_menu_wrapper .submenu_wrapper {  
+
input[type="password"],
display:none;
+
input[type="email"],
 +
select {
 +
height: 2.75em;
 
}
 
}
  
/* when the page size is bigger than 800px, this show/hide control is hidden by default */
+
textarea {
.igem_2017_menu_wrapper #display_menu_control {
+
padding: 0.75em 1em;
display:none;
+
text-align:center;
+
 
}
 
}
 
  
/***************************************************** CONTENT OF THE PAGE ****************************************************/
+
input[type="checkbox"],
 
+
input[type="radio"] {
/* Wrapper for the content */
+
-moz-appearance: none;
.igem_2017_content_wrapper {
+
-webkit-appearance: none;
width: 81%;
+
-o-appearance: none;
margin: 2%;
+
-ms-appearance: none;
display:block;
+
appearance: none;
float:left;  
+
display: block;
background-color: white;
+
float: left;
font-family:Tahoma, Geneva, sans-serif;  
+
margin-right: -2em;
 +
opacity: 0;
 +
width: 1em;
 +
z-index: -1;
 
}
 
}
  
 +
input[type="checkbox"] + label,
 +
input[type="radio"] + label {
 +
text-decoration: none;
 +
color: #444;
 +
cursor: pointer;
 +
display: inline-block;
 +
font-size: 1em;
 +
font-weight: 300;
 +
padding-left: 2.4em;
 +
padding-right: 0.75em;
 +
position: relative;
 +
}
  
/********************************* HTML STYLING  *********************************/
+
input[type="checkbox"] + label:before,
 +
input[type="radio"] + label:before {
 +
-moz-osx-font-smoothing: grayscale;
 +
-webkit-font-smoothing: antialiased;
 +
font-family: FontAwesome;
 +
font-style: normal;
 +
font-weight: normal;
 +
text-transform: none !important;
 +
}
  
/* styling for the titles h1 h2 */
+
input[type="checkbox"] + label:before,
.igem_2017_content_wrapper h1, .igem_2017_content_wrapper h2 {
+
input[type="radio"] + label:before {
padding:5px 15px;  
+
background: rgba(144, 144, 144, 0.075);
border-bottom: 0px;  
+
border-radius: 4px;
color: #3399ff;
+
border: solid 1px rgba(144, 144, 144, 0.25);
}
+
content: '';
 +
display: inline-block;
 +
height: 1.65em;
 +
left: 0;
 +
line-height: 1.58125em;
 +
position: absolute;
 +
text-align: center;
 +
top: 0;
 +
width: 1.65em;
 +
}
  
 +
input[type="checkbox"]:checked + label:before,
 +
input[type="radio"]:checked + label:before {
 +
background: #3ba666;
 +
border-color: #3ba666;
 +
color: #ffffff;
 +
content: '\f00c';
 +
}
  
/* styling for the titles  h3 h4 h5 h6*/
+
input[type="checkbox"]:focus + label:before,
.igem_2017_content_wrapper h3, .igem_2017_content_wrapper h4, .igem_2017_content_wrapper h5, .igem_2017_content_wrapper h6 {
+
input[type="radio"]:focus + label:before {
padding:5px 15px;
+
border-color: #4dac71;
border-bottom:0px;  
+
box-shadow: 0 0 0 1px #4dac71;
color: #000000;
+
}
}
+
 
+
  
/* font and text */
+
input[type="checkbox"] + label:before {
.igem_2017_content_wrapper p {  
+
border-radius: 4px;
padding: 0px 15px;
+
font-size: 13px;
+
 
}
 
}
  
/* Links */
+
input[type="radio"] + label:before {
.igem_2017_content_wrapper a {  
+
border-radius: 100%;
font-weight: bold;
+
text-decoration: underline;
+
text-decoration-color: #3399ff;
+
color:  #3399ff;
+
-webkit-transition: all 0.4s ease;
+
-moz-transition: all 0.4s ease;
+
-ms-transition: all 0.4s ease;
+
-o-transition: all 0.4s ease;
+
transition: all 0.4s ease;
+
 
}
 
}
  
/* hover for the links */
+
::-webkit-input-placeholder {
.igem_2017_content_wrapper a:hover {  
+
color: #888 !important;
text-decoration:none;
+
opacity: 1.0;
color:#000000;
+
 
}
 
}
  
/* non numbered lists */
+
:-moz-placeholder {
.igem_2017_content_wrapper ul {
+
color: #888 !important;
padding:0px 20px;
+
opacity: 1.0;
font-size: 13px;
+
font-family:Tahoma, Geneva, sans-serif;  
+
 
}
 
}
  
/* numbered lists */
+
::-moz-placeholder {
.igem_2017_content_wrapper ol {
+
color: #888 !important;
padding:0px;  
+
opacity: 1.0;
font-size: 13px;
+
font-family:Tahoma, Geneva, sans-serif;  
+
 
}
 
}
  
/* Table */
+
:-ms-input-placeholder {
.igem_2017_content_wrapper table {  
+
color: #888 !important;
width: 97%;
+
opacity: 1.0;
margin:15px 10px;
+
border: 1px solid #d3d3d3;  
+
border-collapse: collapse;  
+
 
}
 
}
  
/* table cells */
+
.formerize-placeholder {
.igem_2017_content_wrapper  td {  
+
color: #888 !important;
padding: 10px;
+
opacity: 1.0;
vertical-align: text-top;
+
border: 1px solid #d3d3d3;  
+
border-collapse: collapse;  
+
 
}
 
}
  
/* table headers */
+
/* Box */
.igem_2017_content_wrapper th {  
+
 
padding: 10px;
+
.box {
vertical-align: text-top;  
+
border-radius: 4px;
border: 1px solid #d3d3d3;  
+
border: solid 1px rgba(144, 144, 144, 0.25);
border-collapse: collapse;  
+
margin-bottom: 2em;
background-color:#f2f2f2;  
+
padding: 1.5em;
 
}
 
}
  
 +
.box > :last-child,
 +
.box > :last-child > :last-child,
 +
.box > :last-child > :last-child > :last-child {
 +
margin-bottom: 0;
 +
}
  
/**********************************LAYOUT CLASSES **********************************/
+
.box.alt {
 +
border: 0;
 +
border-radius: 0;
 +
padding: 0;
 +
}
  
/* general class for column divs */
+
/* Icon */
.igem_2017_content_wrapper .column  {
+
padding: 10px 0px;
+
float:left;
+
}
+
  
/* class for a full width column */
+
.icon {
.column .full_size {
+
text-decoration: none;
width:100%;  
+
border-bottom: none;
 +
position: relative;
 
}
 
}
  
/* styling for images in a full width column*/
+
.icon:before {
.column.full_size img {  
+
-moz-osx-font-smoothing: grayscale;
width:97%;  
+
-webkit-font-smoothing: antialiased;
padding: 10px 15px;
+
font-family: FontAwesome;
}
+
font-style: normal;
 +
font-weight: normal;
 +
text-transform: none !important;
 +
}
 +
 
 +
.icon > .label {
 +
display: none;
 +
}
 +
 
 +
.icon.rounded {
 +
border-radius: 100%;
 +
border: 1px solid #4dac71;
 +
display: inline-block;
 +
height: 2em;
 +
line-height: 2em;
 +
text-align: center;
 +
width: 2em;
 +
}
 +
 
 +
.icon.rounded.big {
 +
font-size: 3.5em;
 +
}
 +
 
 +
/* Image */
  
/* class for a half width column */
+
.image {
.column.half_size {
+
border-radius: 4px;
width: 50%;  
+
border: 0;
}
+
display: inline-block;
/* styling for images in a half width column*/
+
position: relative;
.column.half_size img {
+
width: 94.5%;
+
padding: 10px 15px;
+
 
}
 
}
  
 +
.image img {
 +
border-radius: 4px;
 +
display: block;
 +
}
  
 +
.image.left {
 +
float: left;
 +
padding: 0 1.5em 1em 0;
 +
top: 0.25em;
 +
}
  
 +
.image.right {
 +
float: right;
 +
padding: 0 0 1em 1.5em;
 +
top: 0.25em;
 +
}
  
/********************************* SUPPORT CLASSES ********************************/
+
.image.left, .image.right {
 +
max-width: 40%;
 +
}
  
/* class that clears content below*/
+
.image.left img, .image.right img {
.igem_2017_content_wrapper .clear {
+
width: 100%;
clear:both;
+
}
}
+
+
+
/* adds extra spacing when clearing content */
+
.igem_2017_content_wrapper  .clear.extra_space {
+
height: 30px;
+
}
+
  
 +
.image.fit {
 +
display: block;
 +
margin: 0 0 2em 0;
 +
width: 100%;
 +
}
  
/* highlight class, makes content slightly smaller */
+
.image.fit img {
.igem_2017_content_wrapper .highlight {  
+
width: 100%;
margin: 0px 15px;
+
}
padding: 15px 0px;
+
}
+
  
 +
/* List */
  
/* highlight class, adds a gray background */
+
ol {
.igem_2017_content_wrapper .highlight.gray {
+
list-style: decimal;
background-color: #f2f2f2;  
+
margin: 0 0 2em 0;
 +
padding-left: 1.25em;
 
}
 
}
  
/* highlight with decoration blue line on top */
+
ol li {
.igem_2017_content_wrapper .highlight.blue_top {
+
padding-left: 0.25em;
    border-top: 4px solid #3399ff;
+
}
}
+
  
/* highlight with a full blue border decoration */
+
ul {
.igem_2017_content_wrapper .highlight.blue_border {
+
list-style: disc;
    border: 4px solid  #3399ff;
+
margin: 0 0 2em 0;
 +
padding-left: 1em;
 
}
 
}
  
 +
ul li {
 +
padding-left: 0.5em;
 +
}
  
/* button class */
+
ul.alt {
.igem_2017_content_wrapper .button{
+
list-style: none;
max-width: 35%;
+
padding-left: 0;
margin: 30px auto;
+
}
padding: 12px 10px;
+
    background-color: #3399ff;
+
    text-align: center;
+
  color: #ffffff;
+
-webkit-transition: all 0.4s ease;  
+
-moz-transition: all 0.4s ease;
+
-ms-transition: all 0.4s ease;
+
-o-transition: all 0.4s ease; transition: all 0.4s ease; 
+
}
+
  
/* styling for button on hover */
+
ul.alt li {
.igem_2017_content_wrapper .button:hover{
+
border-top: solid 1px rgba(144, 144, 144, 0.25);
background-color: #3399ff;
+
padding: 0.8em 0;
    color: #000000;
+
}
}
+
  
 +
ul.alt li:first-child {
 +
border-top: 0;
 +
padding-top: 0;
 +
}
  
 +
ul.icons {
 +
cursor: default;
 +
list-style: none;
 +
padding-left: 0;
 +
}
  
 +
ul.icons li {
 +
display: inline-block;
 +
padding: 0 1em 0 0;
 +
}
  
/***************************************************** RESPONSIVE STYLING ****************************************************/
+
ul.icons li:last-child {
 +
padding-right: 0;
 +
}
  
/* IF THE SCREEN IS LESS THAN 1200PX */
+
ul.actions {
@media only screen and (max-width: 1200px) {
+
cursor: default;
 +
list-style: none;
 +
padding-left: 0;
 +
}
  
#content {width:100%; }
+
ul.actions li {
.igem_2017_menu_wrapper {width:15%; right:0;}
+
display: inline-block;
.highlight {padding:10px 0px;}
+
padding: 0 1em 0 0;
.igem_2017_menu_wrapper #display_menu_control { display:none; }
+
vertical-align: middle;
#menu_content { display:block;}
+
}
.menu_button.direct_to_page {padding-left: 17px;}
+
+
}
+
  
/* IF THE SCREEN IS LESS THAN 800PX */
+
ul.actions li:last-child {
@media only screen and (max-width: 800px) {
+
padding-right: 0;
 +
}
  
.igem_2017_menu_wrapper { width:100%; height: 15%; position:relative; left:0%;}
+
ul.actions.small li {
.igem_2017_content_wrapper {width:100%; margin-left:0px;}
+
padding: 0 0.5em 0 0;
.column.half_size  {width:100%; }
+
}
.column.full_size img, .column.half_size img {  width: 100%; padding: 10px 0px;}
+
.highlight {padding:15px 5px;}
+
.igem_2017_menu_wrapper #display_menu_control { display:block; }
+
#menu_content { display:none;}
+
.igem_2017_menu_wrapper .menu_button .expand_collapse_icon { width: 5%; }
+
.menu_bottom_padding {display:none;}
+
.menu_button.direct_to_page { padding-left: 36px; }
+
}
+
  
 +
ul.actions.vertical li {
 +
display: block;
 +
padding: 1em 0 0 0;
 +
}
  
+
ul.actions.vertical li:first-child {
+
padding-top: 0;
/* special class that the system uses to make sure the team wants a page to be evaluated */
+
}
.judges-will-not-evaluate {
+
    width: 96.6%;
+
  margin: 5px 15px;
+
  display: block;
+
border: 4px solid #3399ff;
+
    font-weight: bold;
+
}
+
+
</style>
+
  
 +
ul.actions.vertical li > * {
 +
margin-bottom: 0;
 +
}
  
<!--- THIS IS WHERE THE HTML BEGINS --->
+
ul.actions.vertical.small li {
 +
padding: 0.5em 0 0 0;
 +
}
  
 +
ul.actions.vertical.small li:first-child {
 +
padding-top: 0;
 +
}
  
 +
ul.actions.fit {
 +
display: table;
 +
margin-left: -1em;
 +
padding: 0;
 +
table-layout: fixed;
 +
width: calc(100% + 1em);
 +
}
  
<head>
+
ul.actions.fit li {
 +
display: table-cell;
 +
padding: 0 0 0 1em;
 +
}
  
<!-- This tells the browser that your page is responsive -->
+
ul.actions.fit li > * {
<meta name="viewport" content="width=device-width, initial-scale=1">
+
margin-bottom: 0;
 +
}
  
</head>
+
ul.actions.fit.small {
 +
margin-left: -0.5em;
 +
width: calc(100% + 0.5em);
 +
}
  
 +
ul.actions.fit.small li {
 +
padding: 0 0 0 0.5em;
 +
}
  
 +
ul.tabular {
 +
list-style: outside none none;
 +
padding: 0px;
 +
}
  
<div class="igem_2017_menu_wrapper" >
+
ul.tabular li {
 +
border-top: solid 1px rgba(144, 144, 144, 0.25);
 +
line-height: 1.75em;
 +
margin: 1.5em 0px 0px;
 +
padding-left: 7em;
 +
padding-top: 12px;
 +
position: relative;
 +
}
  
 +
ul.tabular li:first-child {
 +
border-top: 0;
 +
margin-top: 0;
 +
}
  
 +
ul.tabular li h3 {
 +
left: 0px;
 +
position: absolute;
 +
text-align: center;
 +
top: 12px;
 +
vertical-align: top;
 +
width: 1em;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi">
+
dl {
<img src="http://placehold.it/350x150">
+
margin: 0 0 2em 0;
</a>
+
}
  
 +
/* Table */
  
<!-- this div is hidden by default and will only be displayed if the screen size is too small -->
+
.table-wrapper {
<div class="menu_button" id="display_menu_control">
+
-webkit-overflow-scrolling: touch;
MENU 
+
overflow-x: auto;
</div>
+
}
  
<div id="menu_content">
+
table {
+
margin: 0 0 2em 0;
 +
width: 100%;
 +
}
  
 +
table tbody tr {
 +
border: solid 1px rgba(144, 144, 144, 0.25);
 +
border-left: 0;
 +
border-right: 0;
 +
}
  
 +
table tbody tr:nth-child(2n + 1) {
 +
background-color: rgba(144, 144, 144, 0.075);
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi">
+
table td {
<div class="menu_button direct_to_page">
+
padding: 0.75em 0.75em;
HOME
+
}
</div>
+
</a>
+
  
 +
table th {
 +
color: #666;
 +
font-size: 0.9em;
 +
font-weight: 400;
 +
padding: 0 0.75em 0.75em 0.75em;
 +
text-align: left;
 +
}
  
 +
table thead {
 +
border-bottom: solid 0px rgba(144, 144, 144, 0.25);
 +
}
  
<div class="menu_button">
+
table tfoot {
<div class="expand_collapse_icon">  </div> TEAM
+
border-top: solid 2px rgba(144, 144, 144, 0.25);
</div>
+
}
  
<div class="submenu_wrapper" id="team_submenu">
+
table.alt {
+
border-collapse: separate;
<a href="https://2017.igem.org/Team:IIT_Delhi/Team">
+
}
<div class="submenu_button" id="Team_page">
+
Team
+
</div>
+
</a>
+
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Collaborations">
+
table.alt tbody tr td {
<div class="submenu_button"  id="Collaborations_page">
+
border: solid 1px rgba(144, 144, 144, 0.25);
Collaborations
+
border-left-width: 0;
</div>
+
border-top-width: 0;
</a>
+
}
+
+
</div>
+
  
 +
table.alt tbody tr td:first-child {
 +
border-left-width: 1px;
 +
}
  
+
table.alt tbody tr:first-child td {
+
border-top-width: 1px;
 +
}
  
<div class="menu_button">
+
table.alt thead {
<div class="expand_collapse_icon">  </div> PROJECT
+
border-bottom: 0;
</div>
+
}
  
<!-- project submenu -->
+
table.alt tfoot {
<div class="submenu_wrapper">
+
border-top: 0;
+
}
<a href="https://2017.igem.org/Team:IIT_Delhi/Description">
+
<div class="submenu_button"  id="Description_page">
+
Description
+
</div>
+
</a>
+
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Design">
+
/* Button */
<div class="submenu_button"  id="Design_page">
+
Design
+
</div>
+
</a>
+
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Experiments">
+
input[type="submit"],
<div class="submenu_button" id="Experiments_page">
+
input[type="reset"],
Experiments
+
input[type="button"],
</div>
+
.button {
</a>
+
-moz-appearance: none;
 +
-webkit-appearance: none;
 +
-o-appearance: none;
 +
-ms-appearance: none;
 +
appearance: none;
 +
-moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
 +
-webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
 +
-o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
 +
-ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
 +
transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
 +
background-color: #3ba666;
 +
border-radius: 4px;
 +
border: 0;
 +
color: #ffffff !important;
 +
cursor: pointer;
 +
display: inline-block;
 +
font-weight: 400;
 +
height: 2.85em;
 +
line-height: 2.8em;
 +
padding: 0 2em;
 +
text-align: center;
 +
text-decoration: none;
 +
white-space: nowrap;
 +
}
  
 +
input[type="submit"]:hover,
 +
input[type="reset"]:hover,
 +
input[type="button"]:hover,
 +
.button:hover {
 +
background-color: #42b972;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Notebook">
+
input[type="submit"]:active,
<div class="submenu_button" id="Notebook_page">
+
input[type="reset"]:active,
Notebook
+
input[type="button"]:active,
</div>
+
.button:active {
</a>
+
background-color: #34935a;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/InterLab">
+
input[type="submit"].icon,
<div class="submenu_button" id="InterLab_page">
+
input[type="reset"].icon,
InterLab
+
input[type="button"].icon,
</div>
+
.button.icon {
</a>
+
padding-left: 1.35em;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Contribution">
+
input[type="submit"].icon:before,
<div class="submenu_button" id="Contribution_page">
+
input[type="reset"].icon:before,
Contribution
+
input[type="button"].icon:before,
</div>
+
.button.icon:before {
</a>
+
margin-right: 0.5em;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Model">
+
input[type="submit"].fit,
<div class="submenu_button" id="Model_page">
+
input[type="reset"].fit,
Model
+
input[type="button"].fit,
</div>
+
.button.fit {
</a>
+
display: block;
 +
margin: 0 0 1em 0;
 +
width: 100%;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Results">
+
input[type="submit"].small,
<div class="submenu_button" id="Results_page">
+
input[type="reset"].small,
Results
+
input[type="button"].small,
</div>
+
.button.small {
</a>
+
font-size: 0.8em;
 +
}
  
 +
input[type="submit"].big,
 +
input[type="reset"].big,
 +
input[type="button"].big,
 +
.button.big {
 +
font-size: 1.35em;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Demonstrate">
+
input[type="submit"].alt,
<div class="submenu_button" id="Demonstrate_page">
+
input[type="reset"].alt,
Demonstrate
+
input[type="button"].alt,
</div>
+
.button.alt {
</a>
+
background-color: transparent;
 +
box-shadow: inset 0 0 0 2px rgba(144, 144, 144, 0.25);
 +
color: #666 !important;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Improve">
+
input[type="submit"].alt:hover,
<div class="submenu_button" id="Improve_page">
+
input[type="reset"].alt:hover,
Improve
+
input[type="button"].alt:hover,
</div>
+
.button.alt:hover {
</a>
+
background-color: rgba(144, 144, 144, 0.075);
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Attributions">
+
input[type="submit"].alt:active,
<div class="submenu_button" id="Attributions_page">
+
input[type="reset"].alt:active,
Attributions
+
input[type="button"].alt:active,
</div>
+
.button.alt:active {
</a>
+
background-color: rgba(144, 144, 144, 0.2);
 +
}
  
</div>
+
input[type="submit"].alt.icon:before,
 +
input[type="reset"].alt.icon:before,
 +
input[type="button"].alt.icon:before,
 +
.button.alt.icon:before {
 +
color: #888;
 +
}
  
+
input[type="submit"].special,
+
input[type="reset"].special,
+
input[type="button"].special,
+
.button.special {
 +
background-color: #4dac71;
 +
color: #ffffff !important;
 +
}
  
<div class="menu_button">
+
input[type="submit"].special:hover,
<div class="expand_collapse_icon">  </div> PARTS
+
input[type="reset"].special:hover,
</div>
+
input[type="button"].special:hover,
+
.button.special:hover {
<!-- parts submenu -->
+
background-color: #5cb67e;
<div class="submenu_wrapper">
+
}
+
<a href="https://2017.igem.org/Team:IIT_Delhi/Parts">
+
<div class="submenu_button"  id="Parts_page">
+
Parts
+
</div>
+
</a>
+
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Basic_Part">
+
input[type="submit"].special:active,
<div class="submenu_button" id="Basic_Part_page">
+
input[type="reset"].special:active,
Basic Parts
+
input[type="button"].special:active,
</div>
+
.button.special:active {
</a>
+
background-color: #459a65;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Composite_Part">
+
input[type="submit"].disabled, input[type="submit"]:disabled,
<div class="submenu_button" id="Composite_Part_page">
+
input[type="reset"].disabled,
Composite Parts
+
input[type="reset"]:disabled,
</div>
+
input[type="button"].disabled,
</a>
+
input[type="button"]:disabled,
 +
.button.disabled,
 +
.button:disabled {
 +
background-color: #444 !important;
 +
box-shadow: inset 0 -0.15em 0 0 rgba(0, 0, 0, 0.15);
 +
color: #fff !important;
 +
cursor: default;
 +
opacity: 0.25;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Part_Collection">
+
/* Header */
<div class="submenu_button"  id="Part_Collection_page">
+
Part Collection
+
</div>
+
</a>
+
</div>
+
  
+
body.landing #header {
+
background-color: transparent;
+
left: 0;
+
position: absolute;
 +
top: 0;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Safety">
+
#header {
<div class="menu_button direct_to_page">
+
background-color: #202222;
SAFETY
+
color: #ffffff;
</div>
+
cursor: default;
</a>
+
height: 4.75em;
 +
line-height: 4.75em;
 +
width: 100%;
 +
z-index: 10000;
 +
}
  
 +
#header h1 {
 +
color: #ffffff;
 +
height: inherit;
 +
left: 2.5em;
 +
line-height: inherit;
 +
margin: 0;
 +
padding: 0;
 +
position: absolute;
 +
top: 0;
 +
}
  
 +
#header h1 a {
 +
font-size: 1.25em;
 +
}
  
 +
#header nav {
 +
height: inherit;
 +
line-height: inherit;
 +
position: absolute;
 +
right: 2.75em;
 +
top: 0;
 +
vertical-align: middle;
 +
}
  
 +
#header nav > ul {
 +
list-style: none;
 +
margin: 0;
 +
padding-left: 0;
 +
}
  
 +
#header nav > ul > li {
 +
border-radius: 4px;
 +
display: inline-block;
 +
margin-left: 1.5em;
 +
padding-left: 0;
 +
}
  
 +
#header nav > ul > li a {
 +
-moz-transition: color 0.2s ease-in-out;
 +
-webkit-transition: color 0.2s ease-in-out;
 +
-o-transition: color 0.2s ease-in-out;
 +
-ms-transition: color 0.2s ease-in-out;
 +
transition: color 0.2s ease-in-out;
 +
color: #cee8d8;
 +
display: inline-block;
 +
text-decoration: none;
 +
}
  
<div class="menu_button" >
+
#header nav > ul > li a:hover {
<div class="expand_collapse_icon"> </div> HUMAN PRACTICES
+
color: #ffffff;
</div>
+
}
  
<!-- human practices submenu -->
+
#header nav > ul > li:first-child {
<div class="submenu_wrapper">
+
margin-left: 0;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/HP/Silver">
+
#header nav > ul > li .button {
<div class="submenu_button"  id="Silver_page">
+
height: 2.25em;
Silver HP
+
line-height: 2.25em;
</div>
+
margin-bottom: 0;
</a>
+
padding: 0 1em;
 +
position: relative;
 +
top: -0.075em;
 +
vertical-align: middle;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/HP/Gold_Integrated">
+
#header .container {
<div class="submenu_button" id="Gold_Integrated_page">
+
position: relative;
Integrated and Gold
+
}
</div>
+
</a>
+
  
 +
#header .container h1 {
 +
left: 0;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Engagement">
+
#header .container nav {
<div class="submenu_button"  id="Engagement_page">
+
right: 0;
Public Engagement
+
}
</div>
+
</a>
+
  
</div>
+
/* Banner */
  
 +
#banner {
 +
background: url("../images/banner.jpg") ;
  
<div class="menu_button">
+
background-position: center;
<div class="expand_collapse_icon">  </div> AWARDS
+
background-repeat: no-repeat;
</div>
+
background-size: cover;
 +
color: #ffffff;
 +
padding: 41em 0em 1em;
 +
text-align: center;
  
<!-- awards submenu -->
+
}
<div class="submenu_wrapper">
+
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Applied_Design">
+
#banner h2 {
<div class="submenu_button"  id="Applied_Design_page">
+
color: #ffffff;
Applied Design
+
font-size: 3em;
</div>
+
line-height: 1em;
</a>
+
margin: 0 0 0.5em 0;
 +
padding: 0;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Entrepreneurship">
+
#banner p {
<div class="submenu_button"  id="Entrepreneurship_page">
+
font-size: 1.5em;
Entrepreneurship
+
margin: 1.5em 0 0 0;
</div>
+
}
</a>
+
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Hardware">
+
#banner .actions {
<div class="submenu_button"  id="Hardware_page">
+
margin: 3em 0 0 0;
Hardware
+
}
</div>
+
</a>
+
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Measurement">
+
#banner .button {
<div class="submenu_button"  id="Measurement_page">
+
background-color: transparent;
Measurement
+
border: 1px solid #ffffff;
</div>
+
font-weight: 300;
</a>
+
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Model">
+
#banner .button:hover {
<div class="submenu_button"  id="Model_page">
+
background-color: rgba(255, 255, 255, 0.2);
Model
+
}
</div>
+
</a>
+
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Plant">
+
/* Wrapper */
<div class="submenu_button"  id="Plant_page">
+
Plant
+
</div>
+
</a>
+
  
 +
.wrapper {
 +
padding: 3em 0em 4em;
 +
}
  
<a href="https://2017.igem.org/Team:IIT_Delhi/Software">
+
.wrapper.style1 {
<div class="submenu_button"  id="Software_page">
+
background-color: #3ba666;
Software
+
-moz-background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%);
</div>
+
-webkit-background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%);
</a>
+
-o-background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%);
 +
-ms-background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%);
 +
background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%);
 +
color: #ffffff;
 +
margin-top: 0em;
 +
}
  
</div>
+
.wrapper.style1 header {
 +
margin-bottom: 4em;
 +
}
  
<a href="https://igem.org/2017_Judging_Form?team=IIT_Delhi">
+
.wrapper.style1 h2 {
<div class="menu_button direct_to_page">
+
color: #ffffff;
JUDGING FORM
+
}
</div>
+
</a>
+
  
 +
.wrapper.style1 .icon.big {
 +
border-color: #ffffff;
 +
margin-bottom: 0.5em;
 +
}
  
+
.wrapper.style2 .title, .wrapper.style2 header {
<div class="menu_bottom_padding" >
+
border-bottom: medium double rgba(144, 144, 144, 0.25);
</div>
+
padding-bottom: 1em;
+
}
</div>
+
  
 +
.wrapper.style2 header {
 +
margin-bottom: 4em;
 +
}
  
 +
.wrapper.style2 .feature {
 +
margin: 0 0 2em 0;
 +
}
  
 +
/* Footer */
  
</div>
+
#footer {
 +
background: #202222;
 +
color: #ddd;
 +
padding: 1em 0em 1em;
 +
}
  
 +
#footer h2, #footer h3, #footer h4 {
 +
color: #ffffff;
 +
}
  
 +
#footer a {
 +
-moz-transition: all 0.2s ease-in-out;
 +
-webkit-transition: all 0.2s ease-in-out;
 +
-o-transition: all 0.2s ease-in-out;
 +
-ms-transition: all 0.2s ease-in-out;
 +
transition: all 0.2s ease-in-out;
 +
color: #888;
 +
}
 +
 +
#footer a:active, #footer a:hover {
 +
color: #ffffff;
 +
}
 +
 +
#footer .icons .rounded {
 +
border-color: #888;
 +
font-size: 1.5em;
 +
}
 +
 +
#footer .icons .rounded:active, #footer .icons .rounded:hover {
 +
border-color: #ffffff;
 +
}
 +
 +
#footer .copyright {
 +
font-size: 0.9em;
 +
margin: 2em 0 0 0;
 +
padding: 0;
 +
text-align: center;
 +
}
 +
 +
#footer .copyright li {
 +
border-left: solid 1px rgba(144, 144, 144, 0.25);
 +
display: inline-block;
 +
list-style: none;
 +
margin-left: 1.5em;
 +
padding-left: 1.5em;
 +
}
  
<!-- start of content -->
+
#footer .copyright li:first-child {
<div class="igem_2017_content_wrapper">
+
border-left: 0;
<h1>IIT_Delhi</h1>
+
margin-left: 0;
 +
padding-left: 0;
 +
}

Revision as of 12:56, 26 October 2017

@charset "UTF-8";

@font-face {

 font-family: 'Lato';
 font-style: normal;
 font-weight: 300;
 src: local('Lato Light'), local('Lato-Light'), url(http://fonts.gstatic.com/s/lato/v14/IY9HZVvI1cMoAHxvl0w9LVKPGs1ZzpMvnHX-7fPOuAc.woff2) format('woff2');
 unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;

} /* latin */ @font-face {

 font-family: 'Lato';
 font-style: normal;
 font-weight: 300;
 src: local('Lato Light'), local('Lato-Light'), url(http://fonts.gstatic.com/s/lato/v14/22JRxvfANxSmnAhzbFH8PgLUuEpTyoUstqEm5AMlJo4.woff2) format('woff2');
 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;

} /* latin-ext */ @font-face {

 font-family: 'Lato';
 font-style: normal;
 font-weight: 400;
 src: local('Lato Regular'), local('Lato-Regular'), url(http://fonts.gstatic.com/s/lato/v14/8qcEw_nrk_5HEcCpYdJu8BTbgVql8nDJpwnrE27mub0.woff2) format('woff2');
 unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;

} /* latin */ @font-face {

 font-family: 'Lato';
 font-style: normal;
 font-weight: 400;
 src: local('Lato Regular'), local('Lato-Regular'), url(http://fonts.gstatic.com/s/lato/v14/MDadn8DQ_3oT6kvnUq_2r_esZW2xOQ-xsNqO47m55DA.woff2) format('woff2');
 unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215;

}

body { background: #fff; }

body, input, select, textarea { color: #444; font-family: "Lato", Helvetica, sans-serif; font-size: 15pt; font-weight: 300; line-height: 1.65em; }

a { color: #4dac71; text-decoration: underline; }

a:hover { text-decoration: none; }

strong, b { color: #eee; font-weight: 400; }

em, i { font-style: italic; }

p { margin: 0 0 2em 0; }

h1, h2, h3, h4, h5, h6 { color: #666; font-weight: 300; line-height: 1em; margin: 0 0 1em 0; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a { color: inherit; text-decoration: none; }

h2 { font-size: 1.75em; line-height: 1.5em; }

h3 { font-size: 1.35em; line-height: 1.5em; }

h4 { font-size: 1.1em; line-height: 1.5em; }

h5 { font-size: 0.9em; line-height: 1.5em; }

h6 { font-size: 0.7em; line-height: 1.5em; }

sub { font-size: 0.8em; position: relative; top: 0.5em; }

sup { font-size: 0.8em; position: relative; top: -0.5em; }

hr { border: 0; border-bottom: medium 1px rgba(144, 144, 144, 0.25); margin: 2em 0; }

hr.major { margin: 3em 0; }

blockquote { border-left: solid 4px rgba(144, 144, 144, 0.25); font-style: italic; margin: 0 0 2em 0; padding: 0.5em 0 0.5em 2em; }

code { background: rgba(144, 144, 144, 0.075); border-radius: 4px; border: solid 1px rgba(144, 144, 144, 0.25); font-family: "Courier New", monospace; font-size: 0.9em; margin: 0 0.25em; padding: 0.25em 0.65em; }

pre { -webkit-overflow-scrolling: touch; font-family: "Courier New", monospace; font-size: 0.9em; margin: 0 0 2em 0; }

pre code { display: block; line-height: 1.75em; padding: 1em 1.5em; overflow-x: auto; }

.align-left { text-align: left; }

.align-center { text-align: center; }

.align-right { text-align: right; }

/* Section/Article */

section.special, article.special { text-align: center; }

header p { position: relative; margin: 0 0 1.5em 0; }

header h2 + p { font-size: 1.25em; margin-top: -1em; line-height: 1.5em; }

header h3 + p { font-size: 1.1em; margin-top: -0.8em; line-height: 1.5em; }

header h4 + p, header h5 + p, header h6 + p { font-size: 0.9em; margin-top: -0.6em; line-height: 1.5em; }

header.major { text-align: center; margin-bottom: 3em; }

header.major h2 { font-size: 3em; }

header.major p { border-top: medium double rgba(144, 144, 144, 0.25); display: inline-block; padding: 2em 2em 0 2em; }

/* Form */

form { margin: 0 0 2em 0; }

label { color: #666; display: block; font-size: 0.9em; font-weight: 400; margin: 0 0 1em 0; }

input[type="text"], input[type="password"], input[type="email"], select, textarea { -moz-appearance: none; -webkit-appearance: none; -o-appearance: none; -ms-appearance: none; appearance: none; background: rgba(144, 144, 144, 0.075); border-radius: 4px; border: none; border: solid 1px rgba(144, 144, 144, 0.25); color: inherit; display: block; outline: 0; padding: 0 1em; text-decoration: none; width: 100%; }

input[type="text"]:invalid, input[type="password"]:invalid, input[type="email"]:invalid, select:invalid, textarea:invalid { box-shadow: none; }

input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, select:focus, textarea:focus { border-color: #4dac71; box-shadow: 0 0 0 1px #4dac71; }

.select-wrapper { text-decoration: none; display: block; position: relative; }

.select-wrapper:before { content: ""; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; }

.select-wrapper:before { color: rgba(144, 144, 144, 0.25); display: block; height: 2.75em; line-height: 2.75em; pointer-events: none; position: absolute; right: 0; text-align: center; top: 0; width: 2.75em; }

.select-wrapper select::-ms-expand { display: none; }

input[type="text"], input[type="password"], input[type="email"], select { height: 2.75em; }

textarea { padding: 0.75em 1em; }

input[type="checkbox"], input[type="radio"] { -moz-appearance: none; -webkit-appearance: none; -o-appearance: none; -ms-appearance: none; appearance: none; display: block; float: left; margin-right: -2em; opacity: 0; width: 1em; z-index: -1; }

input[type="checkbox"] + label, input[type="radio"] + label { text-decoration: none; color: #444; cursor: pointer; display: inline-block; font-size: 1em; font-weight: 300; padding-left: 2.4em; padding-right: 0.75em; position: relative; }

input[type="checkbox"] + label:before, input[type="radio"] + label:before { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; }

input[type="checkbox"] + label:before, input[type="radio"] + label:before { background: rgba(144, 144, 144, 0.075); border-radius: 4px; border: solid 1px rgba(144, 144, 144, 0.25); content: ; display: inline-block; height: 1.65em; left: 0; line-height: 1.58125em; position: absolute; text-align: center; top: 0; width: 1.65em; }

input[type="checkbox"]:checked + label:before, input[type="radio"]:checked + label:before { background: #3ba666; border-color: #3ba666; color: #ffffff; content: '\f00c'; }

input[type="checkbox"]:focus + label:before, input[type="radio"]:focus + label:before { border-color: #4dac71; box-shadow: 0 0 0 1px #4dac71; }

input[type="checkbox"] + label:before { border-radius: 4px; }

input[type="radio"] + label:before { border-radius: 100%; }

::-webkit-input-placeholder { color: #888 !important; opacity: 1.0; }

:-moz-placeholder { color: #888 !important; opacity: 1.0; }

::-moz-placeholder { color: #888 !important; opacity: 1.0; }

:-ms-input-placeholder { color: #888 !important; opacity: 1.0; }

.formerize-placeholder { color: #888 !important; opacity: 1.0; }

/* Box */

.box { border-radius: 4px; border: solid 1px rgba(144, 144, 144, 0.25); margin-bottom: 2em; padding: 1.5em; }

.box > :last-child, .box > :last-child > :last-child, .box > :last-child > :last-child > :last-child { margin-bottom: 0; }

.box.alt { border: 0; border-radius: 0; padding: 0; }

/* Icon */

.icon { text-decoration: none; border-bottom: none; position: relative; }

.icon:before { -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; font-family: FontAwesome; font-style: normal; font-weight: normal; text-transform: none !important; }

.icon > .label { display: none; }

.icon.rounded { border-radius: 100%; border: 1px solid #4dac71; display: inline-block; height: 2em; line-height: 2em; text-align: center; width: 2em; }

.icon.rounded.big { font-size: 3.5em; }

/* Image */

.image { border-radius: 4px; border: 0; display: inline-block; position: relative; }

.image img { border-radius: 4px; display: block; }

.image.left { float: left; padding: 0 1.5em 1em 0; top: 0.25em; }

.image.right { float: right; padding: 0 0 1em 1.5em; top: 0.25em; }

.image.left, .image.right { max-width: 40%; }

.image.left img, .image.right img { width: 100%; }

.image.fit { display: block; margin: 0 0 2em 0; width: 100%; }

.image.fit img { width: 100%; }

/* List */

ol { list-style: decimal; margin: 0 0 2em 0; padding-left: 1.25em; }

ol li { padding-left: 0.25em; }

ul { list-style: disc; margin: 0 0 2em 0; padding-left: 1em; }

ul li { padding-left: 0.5em; }

ul.alt { list-style: none; padding-left: 0; }

ul.alt li { border-top: solid 1px rgba(144, 144, 144, 0.25); padding: 0.8em 0; }

ul.alt li:first-child { border-top: 0; padding-top: 0; }

ul.icons { cursor: default; list-style: none; padding-left: 0; }

ul.icons li { display: inline-block; padding: 0 1em 0 0; }

ul.icons li:last-child { padding-right: 0; }

ul.actions { cursor: default; list-style: none; padding-left: 0; }

ul.actions li { display: inline-block; padding: 0 1em 0 0; vertical-align: middle; }

ul.actions li:last-child { padding-right: 0; }

ul.actions.small li { padding: 0 0.5em 0 0; }

ul.actions.vertical li { display: block; padding: 1em 0 0 0; }

ul.actions.vertical li:first-child { padding-top: 0; }

ul.actions.vertical li > * { margin-bottom: 0; }

ul.actions.vertical.small li { padding: 0.5em 0 0 0; }

ul.actions.vertical.small li:first-child { padding-top: 0; }

ul.actions.fit { display: table; margin-left: -1em; padding: 0; table-layout: fixed; width: calc(100% + 1em); }

ul.actions.fit li { display: table-cell; padding: 0 0 0 1em; }

ul.actions.fit li > * { margin-bottom: 0; }

ul.actions.fit.small { margin-left: -0.5em; width: calc(100% + 0.5em); }

ul.actions.fit.small li { padding: 0 0 0 0.5em; }

ul.tabular { list-style: outside none none; padding: 0px; }

ul.tabular li { border-top: solid 1px rgba(144, 144, 144, 0.25); line-height: 1.75em; margin: 1.5em 0px 0px; padding-left: 7em; padding-top: 12px; position: relative; }

ul.tabular li:first-child { border-top: 0; margin-top: 0; }

ul.tabular li h3 { left: 0px; position: absolute; text-align: center; top: 12px; vertical-align: top; width: 1em; }

dl { margin: 0 0 2em 0; }

/* Table */

.table-wrapper { -webkit-overflow-scrolling: touch; overflow-x: auto; }

table { margin: 0 0 2em 0; width: 100%; }

table tbody tr { border: solid 1px rgba(144, 144, 144, 0.25); border-left: 0; border-right: 0; }

table tbody tr:nth-child(2n + 1) { background-color: rgba(144, 144, 144, 0.075); }

table td { padding: 0.75em 0.75em; }

table th { color: #666; font-size: 0.9em; font-weight: 400; padding: 0 0.75em 0.75em 0.75em; text-align: left; }

table thead { border-bottom: solid 0px rgba(144, 144, 144, 0.25); }

table tfoot { border-top: solid 2px rgba(144, 144, 144, 0.25); }

table.alt { border-collapse: separate; }

table.alt tbody tr td { border: solid 1px rgba(144, 144, 144, 0.25); border-left-width: 0; border-top-width: 0; }

table.alt tbody tr td:first-child { border-left-width: 1px; }

table.alt tbody tr:first-child td { border-top-width: 1px; }

table.alt thead { border-bottom: 0; }

table.alt tfoot { border-top: 0; }

/* Button */

input[type="submit"], input[type="reset"], input[type="button"], .button { -moz-appearance: none; -webkit-appearance: none; -o-appearance: none; -ms-appearance: none; appearance: none; -moz-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; -ms-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out; background-color: #3ba666; border-radius: 4px; border: 0; color: #ffffff !important; cursor: pointer; display: inline-block; font-weight: 400; height: 2.85em; line-height: 2.8em; padding: 0 2em; text-align: center; text-decoration: none; white-space: nowrap; }

input[type="submit"]:hover, input[type="reset"]:hover, input[type="button"]:hover, .button:hover { background-color: #42b972; }

input[type="submit"]:active, input[type="reset"]:active, input[type="button"]:active, .button:active { background-color: #34935a; }

input[type="submit"].icon, input[type="reset"].icon, input[type="button"].icon, .button.icon { padding-left: 1.35em; }

input[type="submit"].icon:before, input[type="reset"].icon:before, input[type="button"].icon:before, .button.icon:before { margin-right: 0.5em; }

input[type="submit"].fit, input[type="reset"].fit, input[type="button"].fit, .button.fit { display: block; margin: 0 0 1em 0; width: 100%; }

input[type="submit"].small, input[type="reset"].small, input[type="button"].small, .button.small { font-size: 0.8em; }

input[type="submit"].big, input[type="reset"].big, input[type="button"].big, .button.big { font-size: 1.35em; }

input[type="submit"].alt, input[type="reset"].alt, input[type="button"].alt, .button.alt { background-color: transparent; box-shadow: inset 0 0 0 2px rgba(144, 144, 144, 0.25); color: #666 !important; }

input[type="submit"].alt:hover, input[type="reset"].alt:hover, input[type="button"].alt:hover, .button.alt:hover { background-color: rgba(144, 144, 144, 0.075); }

input[type="submit"].alt:active, input[type="reset"].alt:active, input[type="button"].alt:active, .button.alt:active { background-color: rgba(144, 144, 144, 0.2); }

input[type="submit"].alt.icon:before, input[type="reset"].alt.icon:before, input[type="button"].alt.icon:before, .button.alt.icon:before { color: #888; }

input[type="submit"].special, input[type="reset"].special, input[type="button"].special, .button.special { background-color: #4dac71; color: #ffffff !important; }

input[type="submit"].special:hover, input[type="reset"].special:hover, input[type="button"].special:hover, .button.special:hover { background-color: #5cb67e; }

input[type="submit"].special:active, input[type="reset"].special:active, input[type="button"].special:active, .button.special:active { background-color: #459a65; }

input[type="submit"].disabled, input[type="submit"]:disabled, input[type="reset"].disabled, input[type="reset"]:disabled, input[type="button"].disabled, input[type="button"]:disabled, .button.disabled, .button:disabled { background-color: #444 !important; box-shadow: inset 0 -0.15em 0 0 rgba(0, 0, 0, 0.15); color: #fff !important; cursor: default; opacity: 0.25; }

/* Header */

body.landing #header { background-color: transparent; left: 0; position: absolute; top: 0; }

#header { background-color: #202222; color: #ffffff; cursor: default; height: 4.75em; line-height: 4.75em; width: 100%; z-index: 10000; }

#header h1 { color: #ffffff; height: inherit; left: 2.5em; line-height: inherit; margin: 0; padding: 0; position: absolute; top: 0; }

#header h1 a { font-size: 1.25em; }

#header nav { height: inherit; line-height: inherit; position: absolute; right: 2.75em; top: 0; vertical-align: middle; }

#header nav > ul { list-style: none; margin: 0; padding-left: 0; }

#header nav > ul > li { border-radius: 4px; display: inline-block; margin-left: 1.5em; padding-left: 0; }

#header nav > ul > li a { -moz-transition: color 0.2s ease-in-out; -webkit-transition: color 0.2s ease-in-out; -o-transition: color 0.2s ease-in-out; -ms-transition: color 0.2s ease-in-out; transition: color 0.2s ease-in-out; color: #cee8d8; display: inline-block; text-decoration: none; }

#header nav > ul > li a:hover { color: #ffffff; }

#header nav > ul > li:first-child { margin-left: 0; }

#header nav > ul > li .button { height: 2.25em; line-height: 2.25em; margin-bottom: 0; padding: 0 1em; position: relative; top: -0.075em; vertical-align: middle; }

#header .container { position: relative; }

#header .container h1 { left: 0; }

#header .container nav { right: 0; }

/* Banner */

#banner { background: url("../images/banner.jpg") ;

background-position: center; background-repeat: no-repeat; background-size: cover; color: #ffffff; padding: 41em 0em 1em; text-align: center;

}

#banner h2 { color: #ffffff; font-size: 3em; line-height: 1em; margin: 0 0 0.5em 0; padding: 0; }

#banner p { font-size: 1.5em; margin: 1.5em 0 0 0; }

#banner .actions { margin: 3em 0 0 0; }

#banner .button { background-color: transparent; border: 1px solid #ffffff; font-weight: 300; }

#banner .button:hover { background-color: rgba(255, 255, 255, 0.2); }

/* Wrapper */

.wrapper { padding: 3em 0em 4em; }

.wrapper.style1 { background-color: #3ba666; -moz-background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%); -webkit-background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%); -o-background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%); -ms-background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%); background-image: linear-gradient(60deg, #4dac71 50%, #3ba666 50%); color: #ffffff; margin-top: 0em; }

.wrapper.style1 header { margin-bottom: 4em; }

.wrapper.style1 h2 { color: #ffffff; }

.wrapper.style1 .icon.big { border-color: #ffffff; margin-bottom: 0.5em; }

.wrapper.style2 .title, .wrapper.style2 header { border-bottom: medium double rgba(144, 144, 144, 0.25); padding-bottom: 1em; }

.wrapper.style2 header { margin-bottom: 4em; }

.wrapper.style2 .feature { margin: 0 0 2em 0; }

/* Footer */

#footer { background: #202222; color: #ddd; padding: 1em 0em 1em; }

#footer h2, #footer h3, #footer h4 { color: #ffffff; }

#footer a { -moz-transition: all 0.2s ease-in-out; -webkit-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out; -ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out; color: #888; }

#footer a:active, #footer a:hover { color: #ffffff; }

#footer .icons .rounded { border-color: #888; font-size: 1.5em; }

#footer .icons .rounded:active, #footer .icons .rounded:hover { border-color: #ffffff; }

#footer .copyright { font-size: 0.9em; margin: 2em 0 0 0; padding: 0; text-align: center; }

#footer .copyright li { border-left: solid 1px rgba(144, 144, 144, 0.25); display: inline-block; list-style: none; margin-left: 1.5em; padding-left: 1.5em; }

#footer .copyright li:first-child { border-left: 0; margin-left: 0; padding-left: 0; }