(39 intermediate revisions by 2 users not shown) | |||
Line 42: | Line 42: | ||
} | } | ||
+ | |||
+ | |||
+ | /*Side bar styling for Wet Lab page*/ | ||
+ | |||
+ | #sidenavbar { | ||
+ | position: fixed; | ||
+ | right: 40px; | ||
+ | top: 50%; | ||
+ | bottom: auto; | ||
+ | -webkit-transform: translateY(-50%); | ||
+ | -moz-transform: translateY(-50%); | ||
+ | -ms-transform: translateY(-50%); | ||
+ | -o-transform: translateY(-50%); | ||
+ | transform: translateY(-50%); | ||
+ | z-index: 1; | ||
+ | background: rgba(255,255,255,0); | ||
+ | } | ||
+ | #sidenavbar li { | ||
+ | text-align: right; | ||
+ | list-style-type: none !important; | ||
+ | } | ||
+ | #sidenavbar a { | ||
+ | display: inline-block; | ||
+ | /* prevent weird movements on hover when you use a CSS3 transformation - webkit browsers */ | ||
+ | -webkit-backface-visibility: hidden; | ||
+ | backface-visibility: hidden; | ||
+ | } | ||
+ | #sidenavbar a:after { | ||
+ | content: ""; | ||
+ | display: table; | ||
+ | clear: both; | ||
+ | } | ||
+ | #sidenavbar a span { | ||
+ | float: right; | ||
+ | display: inline-block; | ||
+ | -webkit-transform: scale(0.6); | ||
+ | -moz-transform: scale(0.6); | ||
+ | -ms-transform: scale(0.6); | ||
+ | -o-transform: scale(0.6); | ||
+ | transform: scale(0.6); | ||
+ | } | ||
+ | #sidenavbar a:hover span { | ||
+ | -webkit-transform: scale(1.2); | ||
+ | -moz-transform: scale(1.2); | ||
+ | -ms-transform: scale(1.2); | ||
+ | -o-transform: scale(1.2); | ||
+ | transform: scale(1.2); | ||
+ | } | ||
+ | |||
+ | #sidenavbar a:hover .cd-label { | ||
+ | opacity: 1; | ||
+ | } | ||
+ | #sidenavbar a.is-selected .cd-dot { | ||
+ | background-color: #388E3C; | ||
+ | } | ||
+ | #sidenavbar .cd-dot { | ||
+ | position: relative; | ||
+ | /* we set a top value in order to align the dot with the label. If you change label's font, you may need to change this top value*/ | ||
+ | top: 9px; | ||
+ | height: 18px; | ||
+ | width: 18px; | ||
+ | border-radius: 50%; | ||
+ | background-color: rgb(44, 166, 226); | ||
+ | -webkit-transition: -webkit-transform 0.2s, background-color 0.5s; | ||
+ | -moz-transition: -moz-transform 0.2s, background-color 0.5s; | ||
+ | transition: transform 0.2s, background-color 0.5s; | ||
+ | -webkit-transform-origin: 50% 50%; | ||
+ | -moz-transform-origin: 50% 50%; | ||
+ | -ms-transform-origin: 50% 50%; | ||
+ | -o-transform-origin: 50% 50%; | ||
+ | transform-origin: 50% 50%; | ||
+ | } | ||
+ | #sidenavbar .cd-label { | ||
+ | position: relative; | ||
+ | margin-right: 10px; | ||
+ | padding: .4em .5em; | ||
+ | color: rgb(44, 166, 226); | ||
+ | font-size: 14px; | ||
+ | font-size: 1.500rem; | ||
+ | -webkit-transition: -webkit-transform 0.2s, opacity 0.2s; | ||
+ | -moz-transition: -moz-transform 0.2s, opacity 0.2s; | ||
+ | transition: transform 0.2s, opacity 0.2s; | ||
+ | opacity: 0; | ||
+ | -webkit-transform-origin: 100% 50%; | ||
+ | -moz-transform-origin: 100% 50%; | ||
+ | -ms-transform-origin: 100% 50%; | ||
+ | -o-transform-origin: 100% 50%; | ||
+ | transform-origin: 100% 50%; | ||
+ | } | ||
+ | |||
/*Center the navbar elements with words*/ | /*Center the navbar elements with words*/ | ||
Line 49: | Line 139: | ||
#topHeader{ | #topHeader{ | ||
− | top: - | + | top: -50px; |
font-size: 60px; | font-size: 60px; | ||
font-family: cabin sketch; | font-family: cabin sketch; | ||
Line 79: | Line 169: | ||
#homeP{ | #homeP{ | ||
− | font-family: | + | text-align: left; |
− | font-size: | + | font-family: arial; |
+ | font-size: 14px; | ||
+ | } | ||
+ | #fontp{ | ||
+ | text-align: left; | ||
+ | font-family: arial; | ||
+ | font-size: 16px; | ||
+ | |||
} | } | ||
/*Back to the top button styling*/ | /*Back to the top button styling*/ | ||
− | #myBtn | + | #myBtn{ |
display: none; /* Hidden by default */ | display: none; /* Hidden by default */ | ||
position: fixed; /* Fixed/sticky position */ | position: fixed; /* Fixed/sticky position */ | ||
/* Place the button at the bottom of the page */ | /* Place the button at the bottom of the page */ | ||
− | bottom: | + | bottom: -50px; |
− | + | left: 46%; | |
+ | width: 100px; | ||
+ | height: 80px; | ||
z-index: 99; /* Make sure it does not overlap */ | z-index: 99; /* Make sure it does not overlap */ | ||
border: none; /* Remove borders */ | border: none; /* Remove borders */ | ||
Line 96: | Line 195: | ||
color: white; /* Text color */ | color: white; /* Text color */ | ||
cursor: pointer; /* Add a mouse pointer on hover */ | cursor: pointer; /* Add a mouse pointer on hover */ | ||
− | padding: | + | padding-bottom: 60px; /* Some padding */ |
− | border-radius: | + | border-radius: 50%; /* Rounded corners */ |
} | } | ||
Line 103: | Line 202: | ||
background-color: #555; /* Add a dark-grey background on hover */ | background-color: #555; /* Add a dark-grey background on hover */ | ||
} | } | ||
− | |||
/*Image Cube animation settings*/ | /*Image Cube animation settings*/ | ||
Line 113: | Line 211: | ||
margin: auto; | margin: auto; | ||
cursor: default; | cursor: default; | ||
− | perspective: | + | perspective: 1200px; |
} | } | ||
Line 219: | Line 317: | ||
/*Styling for the flip down button on the contact us page*/ | /*Styling for the flip down button on the contact us page*/ | ||
.ch-item-2 { | .ch-item-2 { | ||
− | width: | + | width: 350px; |
− | height: | + | height: 350px; |
border-radius: 50%; | border-radius: 50%; | ||
position: relative; | position: relative; | ||
Line 232: | Line 330: | ||
.ch-info-2{ | .ch-info-2{ | ||
position: relative; | position: relative; | ||
− | width: | + | width: 350px; |
− | height: | + | height: 350px; |
border-radius: 50%; | border-radius: 50%; | ||
Line 320: | Line 418: | ||
text-align: center; | text-align: center; | ||
padding: 10px; | padding: 10px; | ||
+ | padding-left: 30px; | ||
font-size: 12px; | font-size: 12px; | ||
border-top: 1px solid rgba(255,255,255,0.5); | border-top: 1px solid rgba(255,255,255,0.5); | ||
Line 359: | Line 458: | ||
background: rgba(0, 171, 255, 0.6); | background: rgba(0, 171, 255, 0.6); | ||
} | } | ||
− | |||
/*DNA animation*/ | /*DNA animation*/ | ||
:root { | :root { | ||
--bg-color: radial-gradient(circle at center, #ffffff, #cccccc); | --bg-color: radial-gradient(circle at center, #ffffff, #cccccc); | ||
− | --dot-color1: | + | --dot-color1: rgb(61, 209, 223); |
− | --dot-color2: | + | --dot-color2: rgb(254, 167, 0); |
} | } | ||
.dna { | .dna { | ||
− | |||
position:relative; | position:relative; | ||
margin:auto; | margin:auto; | ||
Line 387: | Line 484: | ||
position: relative; | position: relative; | ||
transform: rotateX(-360deg); | transform: rotateX(-360deg); | ||
− | animation: run | + | animation: run 3.5s linear infinite; |
} | } | ||
.ele:before, .ele:after { | .ele:before, .ele:after { | ||
Line 4,201: | Line 4,298: | ||
.img-rounded { | .img-rounded { | ||
− | border-radius: | + | border-radius: 12px; |
} | } | ||
Line 4,209: | Line 4,306: | ||
background-color: #fff; | background-color: #fff; | ||
border: 1px solid #ddd; | border: 1px solid #ddd; | ||
− | border-radius: | + | border-radius: 6px; |
-webkit-transition: all 0.2s ease-in-out; | -webkit-transition: all 0.2s ease-in-out; | ||
-o-transition: all 0.2s ease-in-out; | -o-transition: all 0.2s ease-in-out; | ||
Line 4,219: | Line 4,316: | ||
.img-circle { | .img-circle { | ||
− | border-radius: | + | border-radius: 80%; |
padding: 20px; | padding: 20px; | ||
Line 4,753: | Line 4,850: | ||
padding-left: 15px; | padding-left: 15px; | ||
padding-right: 15px; | padding-right: 15px; | ||
+ | padding-top:15px; | ||
} | } | ||
Line 6,498: | Line 6,596: | ||
background-color: #337ab7; | background-color: #337ab7; | ||
border-color: #2e6da4; | border-color: #2e6da4; | ||
+ | width: 350px; | ||
+ | height: 100px; | ||
} | } | ||
.btn-primary:focus, .btn-primary.focus { | .btn-primary:focus, .btn-primary.focus { |
Latest revision as of 23:59, 1 November 2017