Difference between revisions of "Team:KU Leuven"

m
 
(153 intermediate revisions by 4 users not shown)
Line 21: Line 21:
 
}
 
}
 
#grad {
 
#grad {
     background: -webkit-linear-gradient(black,black,#a8a6a6,white); /* Safari 5.1-6.0 */
+
     background: -webkit-linear-gradient(#faebd7,#faeddb,#fbefdf,#fbf1e3,#fcf3e7,#fcf5eb,#fdf7ef,#f2f2f2); /* Safari 5.1-6.0 */
     background: -o-linear-gradient(black,black,#a8a6a6,white); /* Opera 11.1-12.0 */  
+
     background: -o-linear-gradient((#faebd7,#faeddb,#fbefdf,#fbf1e3,#fcf3e7,#fcf5eb,#fdf7ef,#f2f2f2)); /* Opera 11.1-12.0 */  
     background: -moz-linear-gradient(black,black,#a8a6a6,white); /* Firefox 3.6-15 */
+
     background: -moz-linear-gradient((#faebd7,#faeddb,#fbefdf,#fbf1e3,#fcf3e7,#fcf5eb,#fdf7ef,#f2f2f2)); /* Firefox 3.6-15 */
     background: linear-gradient(black,black,#a8a6a6,white); /* Standard syntax */
+
     background: linear-gradient((#faebd7,#faeddb,#fbefdf,#fbf1e3,#fcf3e7,#fcf5eb,#fdf7ef,#f2f2f2)); /* Standard syntax */
 +
}
 +
 
 +
.home {
 +
            position: relative;
 +
    }
 +
 
 +
    .home .bg {
 +
            position: relative;
 +
            display: block;
 +
            height: 85vh;
 +
            background-size: cover;
 +
            background-image: url(https://static.igem.org/mediawiki/2017/6/69/KU_Leuven_BG.png);
 +
            background-repeat: no-repeat;
 +
            background-position: center;
 +
    }
 +
 
 +
    .arrow {
 +
            position: relative;
 +
            margin: -100px auto 0px auto;
 +
            display: block;
 +
            width: 80px;
 +
            height: 80px;
 +
 
 +
            border-radius: 50%;
 +
    }
 +
 
 +
    .arrow:hover {
 +
            background-color: rgba(255, 255, 255, 0.175);
 +
            cursor: pointer;
 +
    }
 +
 
 +
    .arrow img {
 +
            margin: 15px;
 +
            width: 50px;
 +
            height: 50px;
 +
    }
 +
 
 +
body {
 +
  background: #262525;
 +
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
 +
}
 +
 
 +
.cont {
 +
  position: relative;
 +
  overflow: hidden;
 +
  height: 100vh;
 +
  padding: 80px 70px;
 +
}
 +
.cont__inner {
 +
  position: relative;
 +
  height: 100%;
 +
}
 +
.cont__inner:hover .el__bg:after {
 +
  opacity: 1;
 +
}
 +
.el__text .container2{
 +
position: relative;
 +
padding: 0px 10px 0 10px;
 +
padding-top: 10px;
 +
}
 +
 
 +
 
 +
.el {
 +
  position: absolute;
 +
  left: 0;
 +
  top: 0;
 +
  width: 19.2%;
 +
  height: 100%;
 +
  background: #252525;
 +
  -webkit-transition: width 0.7s, opacity 0.6s 0.7s, z-index 0s 1.3s, -webkit-transform 0.6s 0.7s;
 +
  transition: width 0.7s, opacity 0.6s 0.7s, z-index 0s 1.3s, -webkit-transform 0.6s 0.7s;
 +
  transition: transform 0.6s 0.7s, width 0.7s, opacity 0.6s 0.7s, z-index 0s 1.3s;
 +
  transition: transform 0.6s 0.7s, width 0.7s, opacity 0.6s 0.7s, z-index 0s 1.3s, -webkit-transform 0.6s 0.7s;
 +
  will-change: transform, width, opacity;
 +
}
 +
.el:not(.s--active) {
 +
  cursor: pointer;
 +
}
 +
.el__overflow {
 +
  overflow: hidden;
 +
  position: relative;
 +
  height: 100%;
 +
}
 +
.el__inner {
 +
  overflow: hidden;
 +
  position: relative;
 +
  height: 100%;
 +
  -webkit-transition: -webkit-transform 1s;
 +
  transition: -webkit-transform 1s;
 +
  transition: transform 1s;
 +
  transition: transform 1s, -webkit-transform 1s;
 +
}
 +
.cont.s--inactive .el__inner {
 +
  -webkit-transform: translate3d(0, 100%, 0);
 +
          transform: translate3d(0, 100%, 0);
 +
}
 +
.el__bg {
 +
  position: relative;
 +
  width: calc(100vw - 140px);
 +
  height: 100%;
 +
  -webkit-transition: -webkit-transform 0.6s 0.7s;
 +
  transition: -webkit-transform 0.6s 0.7s;
 +
  transition: transform 0.6s 0.7s;
 +
  transition: transform 0.6s 0.7s, -webkit-transform 0.6s 0.7s;
 +
  will-change: transform;
 +
}
 +
.el__bg:before {
 +
  content: "";
 +
  position: absolute;
 +
  left: 0;
 +
  top: -5%;
 +
  width: 100%;
 +
  height: 110%;
 +
  background-size: cover;
 +
  background-position: center center;
 +
  -webkit-transition: -webkit-transform 1s;
 +
  transition: -webkit-transform 1s;
 +
  transition: transform 1s;
 +
  transition: transform 1s, -webkit-transform 1s;
 +
  -webkit-transform: translate3d(0, 0, 0) scale(1);
 +
          transform: translate3d(0, 0, 0) scale(1);
 +
}
 +
.cont.s--inactive .el__bg:before {
 +
  -webkit-transform: translate3d(0, -100%, 0) scale(1.2);
 +
          transform: translate3d(0, -100%, 0) scale(1.2);
 +
}
 +
.el.s--active .el__bg:before {
 +
  -webkit-transition: -webkit-transform 0.8s;
 +
  transition: -webkit-transform 0.8s;
 +
  transition: transform 0.8s;
 +
  transition: transform 0.8s, -webkit-transform 0.8s;
 +
}
 +
.el__bg:after {
 +
  content: "";
 +
  z-index: 1;
 +
  position: absolute;
 +
  left: 0;
 +
  top: 0;
 +
  width: 100%;
 +
  height: 100%;
 +
  background: rgba(0, 0, 0, 0.3);
 +
  opacity: 0;
 +
  -webkit-transition: opacity 0.5s;
 +
  transition: opacity 0.5s;
 +
}
 +
.cont.s--el-active .el__bg:after {
 +
  -webkit-transition: opacity 0.5s 1.4s;
 +
  transition: opacity 0.5s 1.4s;
 +
  opacity: 1 !important;
 +
}
 +
.el__preview-cont {
 +
  z-index: 2;
 +
  display: -webkit-box;
 +
  display: -ms-flexbox;
 +
  display: flex;
 +
  -webkit-box-pack: center;
 +
      -ms-flex-pack: center;
 +
          justify-content: center;
 +
  -webkit-box-align: center;
 +
      -ms-flex-align: center;
 +
          align-items: center;
 +
  position: absolute;
 +
  left: 0;
 +
  top: 0;
 +
  width: 100%;
 +
  height: 100%;
 +
  -webkit-transition: all 0.3s 1.2s;
 +
  transition: all 0.3s 1.2s;
 +
}
 +
.cont.s--inactive .el__preview-cont {
 +
  opacity: 0;
 +
  -webkit-transform: translateY(10px);
 +
          transform: translateY(10px);
 +
}
 +
.cont.s--el-active .el__preview-cont {
 +
  opacity: 0;
 +
  -webkit-transform: translateY(30px);
 +
          transform: translateY(30px);
 +
  -webkit-transition: all 0.5s;
 +
  transition: all 0.5s;
 +
}
 +
.el__heading {
 +
  color: #fff;
 +
  text-transform: uppercase;
 +
  font-size: 18px;
 +
}
 +
.el__content {
 +
  z-index: -1;
 +
  position: absolute;
 +
  left: 0;
 +
  top: 0;
 +
  width: 100%;
 +
  height: 100%;
 +
  padding: 30px;
 +
  opacity: 0;
 +
  pointer-events: none;
 +
  -webkit-transition: all 0.1s;
 +
  transition: all 0.1s;
 +
}
 +
.el.s--active .el__content {
 +
  z-index: 2;
 +
  opacity: 1;
 +
  pointer-events: auto;
 +
  -webkit-transition: all 0.5s 1.4s;
 +
  transition: all 0.5s 1.4s;
 +
}
 +
.el__text {
 +
  text-transform: uppercase;
 +
  font-size: 40px;
 +
  color: #fff;
 +
}
 +
.el_paragraph{
 +
font-size: 25px;
 +
color: #fff;
 +
}
 +
.el__close-btn {
 +
  z-index: -1;
 +
  position: absolute;
 +
  right: 10px;
 +
  top: 1px;
 +
  width: 40px;
 +
  height: 50px;
 +
  opacity: 0;
 +
  pointer-events: none;
 +
  -webkit-transition: all 0s 0.45s;
 +
  transition: all 0s 0.45s;
 +
  cursor: pointer;
 +
}
 +
.el.s--active .el__close-btn {
 +
  z-index: 5;
 +
  opacity: 1;
 +
  pointer-events: auto;
 +
  -webkit-transition: all 0s 1.4s;
 +
  transition: all 0s 1.4s;
 +
}
 +
.el__close-btn:before, .el__close-btn:after {
 +
  content: "";
 +
  position: absolute;
 +
  left: 0;
 +
  top: 50%;
 +
  width: 100%;
 +
  height: 8px;
 +
  margin-top: -4px;
 +
  background: #fff;
 +
  opacity: 0;
 +
  -webkit-transition: opacity 0s;
 +
  transition: opacity 0s;
 +
}
 +
.el.s--active .el__close-btn:before, .el.s--active .el__close-btn:after {
 +
  opacity: 1;
 +
}
 +
.el__close-btn:before {
 +
  -webkit-transform: rotate(45deg) translateX(100%);
 +
          transform: rotate(45deg) translateX(100%);
 +
}
 +
.el.s--active .el__close-btn:before {
 +
  -webkit-transition: all 0.3s 1.4s cubic-bezier(0.72, 0.09, 0.32, 1.57);
 +
  transition: all 0.3s 1.4s cubic-bezier(0.72, 0.09, 0.32, 1.57);
 +
  -webkit-transform: rotate(45deg) translateX(0);
 +
          transform: rotate(45deg) translateX(0);
 +
}
 +
.el__close-btn:after {
 +
  -webkit-transform: rotate(-45deg) translateX(100%);
 +
          transform: rotate(-45deg) translateX(100%);
 +
}
 +
.el.s--active .el__close-btn:after {
 +
  -webkit-transition: all 0.3s 1.55s cubic-bezier(0.72, 0.09, 0.32, 1.57);
 +
  transition: all 0.3s 1.55s cubic-bezier(0.72, 0.09, 0.32, 1.57);
 +
  -webkit-transform: rotate(-45deg) translateX(0);
 +
          transform: rotate(-45deg) translateX(0);
 +
}
 +
.el__index {
 +
  overflow: hidden;
 +
  position: absolute;
 +
  left: 0;
 +
  bottom: -80px;
 +
  width: 100%;
 +
  height: 100%;
 +
  min-height: 250px;
 +
  text-align: center;
 +
  font-size: 20vw;
 +
  line-height: 0.85;
 +
  font-weight: bold;
 +
  -webkit-transition: opacity 0.3s 1.4s, -webkit-transform 0.5s;
 +
  transition: opacity 0.3s 1.4s, -webkit-transform 0.5s;
 +
  transition: transform 0.5s, opacity 0.3s 1.4s;
 +
  transition: transform 0.5s, opacity 0.3s 1.4s, -webkit-transform 0.5s;
 +
  -webkit-transform: translate3d(0, 1vw, 0);
 +
          transform: translate3d(0, 1vw, 0);
 +
}
 +
.el:hover .el__index {
 +
  -webkit-transform: translate3d(0, 0, 0);
 +
          transform: translate3d(0, 0, 0);
 +
}
 +
.cont.s--el-active .el__index {
 +
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
 +
  transition: opacity 0.3s, -webkit-transform 0.5s;
 +
  transition: transform 0.5s, opacity 0.3s;
 +
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s;
 +
  opacity: 0;
 +
}
 +
.el__index-back, .el__index-front {
 +
  position: absolute;
 +
  left: 0;
 +
  bottom: 0;
 +
  width: 100%;
 +
}
 +
.el__index-back {
 +
  color: #2f3840;
 +
  opacity: 0;
 +
  -webkit-transition: opacity 0.25s 0.25s;
 +
  transition: opacity 0.25s 0.25s;
 +
}
 +
.el:hover .el__index-back {
 +
  -webkit-transition: opacity 0.25s;
 +
  transition: opacity 0.25s;
 +
  opacity: 1;
 +
}
 +
.el__index-overlay {
 +
  overflow: hidden;
 +
  position: relative;
 +
  -webkit-transform: translate3d(0, 100%, 0);
 +
          transform: translate3d(0, 100%, 0);
 +
  -webkit-transition: -webkit-transform 0.5s 0.1s;
 +
  transition: -webkit-transform 0.5s 0.1s;
 +
  transition: transform 0.5s 0.1s;
 +
  transition: transform 0.5s 0.1s, -webkit-transform 0.5s 0.1s;
 +
  color: transparent;
 +
}
 +
.el__index-overlay:before {
 +
  content: attr(data-index);
 +
  position: absolute;
 +
  left: 0;
 +
  bottom: 0;
 +
  width: 100%;
 +
  height: 100%;
 +
  color: #fff;
 +
  -webkit-transform: translate3d(0, -100%, 0);
 +
          transform: translate3d(0, -100%, 0);
 +
  -webkit-transition: -webkit-transform 0.5s 0.1s;
 +
  transition: -webkit-transform 0.5s 0.1s;
 +
  transition: transform 0.5s 0.1s;
 +
  transition: transform 0.5s 0.1s, -webkit-transform 0.5s 0.1s;
 +
}
 +
.el:hover .el__index-overlay {
 +
  -webkit-transform: translate3d(0, 0, 0);
 +
          transform: translate3d(0, 0, 0);
 +
}
 +
.el:hover .el__index-overlay:before {
 +
  -webkit-transform: translate3d(0, 0, 0);
 +
          transform: translate3d(0, 0, 0);
 +
}
 +
.el:nth-child(1) {
 +
  -webkit-transform: translate3d(0%, 0, 0);
 +
          transform: translate3d(0%, 0, 0);
 +
  -webkit-transform-origin: 50% 50%;
 +
          transform-origin: 50% 50%;
 +
}
 +
.cont.s--el-active .el:nth-child(1):not(.s--active) {
 +
  -webkit-transform: scale(0.5) translate3d(0%, 0, 0);
 +
          transform: scale(0.5) translate3d(0%, 0, 0);
 +
  opacity: 0;
 +
  -webkit-transition: opacity 0.95s, -webkit-transform 0.95s;
 +
  transition: opacity 0.95s, -webkit-transform 0.95s;
 +
  transition: transform 0.95s, opacity 0.95s;
 +
  transition: transform 0.95s, opacity 0.95s, -webkit-transform 0.95s;
 +
}
 +
.el:nth-child(1) .el__inner {
 +
  -webkit-transition-delay: 0s;
 +
          transition-delay: 0s;
 +
}
 +
.el:nth-child(1) .el__bg {
 +
  -webkit-transform: translate3d(0%, 0, 0);
 +
          transform: translate3d(0%, 0, 0);
 +
}
 +
.el:nth-child(1) .el__bg:before {
 +
  -webkit-transition-delay: 0s;
 +
          transition-delay: 0s;
 +
  background-image: url("https://static.igem.org/mediawiki/2017/archive/9/96/20171030191733%21New_Homepage.jpg");
 +
}
 +
.el:nth-child(2) {
 +
  -webkit-transform: translate3d(105.20833%, 0, 0);
 +
          transform: translate3d(105.20833%, 0, 0);
 +
  -webkit-transform-origin: 155.20833% 50%;
 +
          transform-origin: 155.20833% 50%;
 +
}
 +
.cont.s--el-active .el:nth-child(2):not(.s--active) {
 +
  -webkit-transform: scale(0.5) translate3d(105.20833%, 0, 0);
 +
          transform: scale(0.5) translate3d(105.20833%, 0, 0);
 +
  opacity: 0;
 +
  -webkit-transition: opacity 0.95s, -webkit-transform 0.95s;
 +
  transition: opacity 0.95s, -webkit-transform 0.95s;
 +
  transition: transform 0.95s, opacity 0.95s;
 +
  transition: transform 0.95s, opacity 0.95s, -webkit-transform 0.95s;
 +
}
 +
.el:nth-child(2) .el__inner {
 +
  -webkit-transition-delay: 0.1s;
 +
          transition-delay: 0.1s;
 +
}
 +
.el:nth-child(2) .el__bg {
 +
  -webkit-transform: translate3d(-19.2%, 0, 0);
 +
          transform: translate3d(-19.2%, 0, 0);
 +
}
 +
.el:nth-child(2) .el__bg:before {
 +
  -webkit-transition-delay: 0.1s;
 +
          transition-delay: 0.1s;
 +
  background-image: url("https://static.igem.org/mediawiki/2017/archive/9/96/20171030191733%21New_Homepage.jpg");
 +
}
 +
.el:nth-child(3) {
 +
  -webkit-transform: translate3d(210.41667%, 0, 0);
 +
          transform: translate3d(210.41667%, 0, 0);
 +
  -webkit-transform-origin: 260.41667% 50%;
 +
          transform-origin: 260.41667% 50%;
 +
}
 +
.cont.s--el-active .el:nth-child(3):not(.s--active) {
 +
  -webkit-transform: scale(0.5) translate3d(210.41667%, 0, 0);
 +
          transform: scale(0.5) translate3d(210.41667%, 0, 0);
 +
  opacity: 0;
 +
  -webkit-transition: opacity 0.95s, -webkit-transform 0.95s;
 +
  transition: opacity 0.95s, -webkit-transform 0.95s;
 +
  transition: transform 0.95s, opacity 0.95s;
 +
  transition: transform 0.95s, opacity 0.95s, -webkit-transform 0.95s;
 +
}
 +
.el:nth-child(3) .el__inner {
 +
  -webkit-transition-delay: 0.2s;
 +
          transition-delay: 0.2s;
 +
}
 +
.el:nth-child(3) .el__bg {
 +
  -webkit-transform: translate3d(-38.4%, 0, 0);
 +
          transform: translate3d(-38.4%, 0, 0);
 +
}
 +
.el:nth-child(3) .el__bg:before {
 +
  -webkit-transition-delay: 0.2s;
 +
          transition-delay: 0.2s;
 +
  background-image: url("https://static.igem.org/mediawiki/2017/archive/9/96/20171030191733%21New_Homepage.jpg");
 +
}
 +
.el:nth-child(4) {
 +
  -webkit-transform: translate3d(315.625%, 0, 0);
 +
          transform: translate3d(315.625%, 0, 0);
 +
  -webkit-transform-origin: 365.625% 50%;
 +
          transform-origin: 365.625% 50%;
 +
}
 +
.cont.s--el-active .el:nth-child(4):not(.s--active) {
 +
  -webkit-transform: scale(0.5) translate3d(315.625%, 0, 0);
 +
          transform: scale(0.5) translate3d(315.625%, 0, 0);
 +
  opacity: 0;
 +
  -webkit-transition: opacity 0.95s, -webkit-transform 0.95s;
 +
  transition: opacity 0.95s, -webkit-transform 0.95s;
 +
  transition: transform 0.95s, opacity 0.95s;
 +
  transition: transform 0.95s, opacity 0.95s, -webkit-transform 0.95s;
 +
}
 +
.el:nth-child(4) .el__inner {
 +
  -webkit-transition-delay: 0.3s;
 +
          transition-delay: 0.3s;
 +
}
 +
.el:nth-child(4) .el__bg {
 +
  -webkit-transform: translate3d(-57.6%, 0, 0);
 +
          transform: translate3d(-57.6%, 0, 0);
 +
}
 +
.el:nth-child(4) .el__bg:before {
 +
  -webkit-transition-delay: 0.3s;
 +
          transition-delay: 0.3s;
 +
  background-image: url("https://static.igem.org/mediawiki/2017/archive/9/96/20171030191733%21New_Homepage.jpg");
 +
}
 +
.el:nth-child(5) {
 +
  -webkit-transform: translate3d(420.83333%, 0, 0);
 +
          transform: translate3d(420.83333%, 0, 0);
 +
  -webkit-transform-origin: 470.83333% 50%;
 +
          transform-origin: 470.83333% 50%;
 +
}
 +
.cont.s--el-active .el:nth-child(5):not(.s--active) {
 +
  -webkit-transform: scale(0.5) translate3d(420.83333%, 0, 0);
 +
          transform: scale(0.5) translate3d(420.83333%, 0, 0);
 +
  opacity: 0;
 +
  -webkit-transition: opacity 0.95s, -webkit-transform 0.95s;
 +
  transition: opacity 0.95s, -webkit-transform 0.95s;
 +
  transition: transform 0.95s, opacity 0.95s;
 +
  transition: transform 0.95s, opacity 0.95s, -webkit-transform 0.95s;
 +
}
 +
.el:nth-child(5) .el__inner {
 +
  -webkit-transition-delay: 0.4s;
 +
          transition-delay: 0.4s;
 +
}
 +
.el:nth-child(5) .el__bg {
 +
  -webkit-transform: translate3d(-76.8%, 0, 0);
 +
          transform: translate3d(-76.8%, 0, 0);
 +
}
 +
.el:nth-child(5) .el__bg:before {
 +
  -webkit-transition-delay: 0.4s;
 +
          transition-delay: 0.4s;
 +
  background-image: url("https://static.igem.org/mediawiki/2017/archive/9/96/20171030191733%21New_Homepage.jpg");
 +
}
 +
.el:hover .el__bg:after {
 +
  opacity: 0;
 +
}
 +
.el.s--active {
 +
  z-index: 1;
 +
  width: 100%;
 +
  -webkit-transform: translate3d(0, 0, 0);
 +
          transform: translate3d(0, 0, 0);
 +
  -webkit-transition: width 0.7s 0.7s, z-index 0s, -webkit-transform 0.6s;
 +
  transition: width 0.7s 0.7s, z-index 0s, -webkit-transform 0.6s;
 +
  transition: transform 0.6s, width 0.7s 0.7s, z-index 0s;
 +
  transition: transform 0.6s, width 0.7s 0.7s, z-index 0s, -webkit-transform 0.6s;
 +
}
 +
.el.s--active .el__bg {
 +
  -webkit-transform: translate3d(0, 0, 0);
 +
          transform: translate3d(0, 0, 0);
 +
  -webkit-transition: -webkit-transform 0.6s;
 +
  transition: -webkit-transform 0.6s;
 +
  transition: transform 0.6s;
 +
  transition: transform 0.6s, -webkit-transform 0.6s;
 +
}
 +
.el.s--active .el__bg:before {
 +
  -webkit-transition-delay: 0.6s;
 +
          transition-delay: 0.6s;
 +
  -webkit-transform: scale(1.1);
 +
          transform: scale(1.1);
 +
}
 +
img .rotate180 {
 +
    -webkit-transform: rotate(180deg);
 +
    -moz-transform: rotate(180deg);
 +
    -o-transform: rotate(180deg);
 +
    -ms-transform: rotate(180deg);
 +
    transform: rotate(180deg);
 
}
 
}
 
 
Line 49: Line 574:
 
         display: inline-block;
 
         display: inline-block;
 
     }
 
     }
 +
/* IF THE SCREEN IS LESS THAN 800PX */
 +
@media only screen and (max-width: 800px) {
 +
.home{
 +
display: block;
 +
}
 +
.cont{
 +
display: none;
 +
}
 +
.animated_svg1{
 +
display: none;
 +
}
 +
.animated_svg2{
 +
margin-top: 18px;
 +
}
 +
}
 +
/* IF THE SCREEN IS MORE THAN 800PX */
 +
@media only screen and (min-width: 801px) {
 +
.home{
 +
display: none;
 +
}
 +
.cont{
 +
display: block;
 +
}
 +
.animated_svg1{
 +
display: block;
 +
}
 +
}
 +
p {
 +
font-color:white;
 +
font-size: 120px;
 +
 +
}
 +
.imagecontainer{
 +
padding:0;
 +
}
 +
 
 
 
</style>
 
</style>
Line 54: Line 615:
  
 
<div id="grad">
 
<div id="grad">
 +
<div class="home">
 +
            <div class="bg">
 +
            </div>
 +
            <div id="scrolldown" class="arrow">
 +
                <img src="https://static.igem.org/mediawiki/2017/0/0f/KU_Leuven-scroll_arrow.png">
 +
            </div>
 +
        </div>
 
 
 +
<div class="cont s--inactive">
 +
 +
  <!-- cont inner start -->
 +
  <div class="cont__inner">
 +
    <!-- el start -->
 +
    <div class="el">
 +
      <div class="el__overflow">
 +
        <div class="el__inner">
 +
          <div class="el__bg"></div>
 +
          <div class="el__preview-cont">
 +
            <h2 class="el__heading"><font color="white">Project</font></h2>
 +
          </div>
 +
          <div class="el__content">
 +
          <div class="el__text">HEKcite</div>
 +
          <div class="container2">
 +
          <p style="color:white;font-size:25px; font-family:arial; position:absolute;text-align:justify">Inspired by the heart and its rhythm, our team sought to aid those who need continuous drug monitoring. To achieve this goal, we transformed ourselves into real dance instructors as we introduced a continuous rhythm in HEK cells. Our cells performed wonderfully so we are very proud to present you: <a href="https://2017.igem.org/Team:KU_Leuven/Description">HEKcite!</a></p>
 +
          </div>
 +
            <div class="el__close-btn"></div>
 +
          </div>
 +
        </div>
 +
      </div>
 +
      <div class="el__index">
 +
        <div class="el__index-back">1</div>
 +
        <div class="el__index-front">
 +
          <div class="el__index-overlay" data-index="1">1</div>
 +
        </div>
 +
      </div>
 +
    </div>
 +
    <!-- el end -->
 +
    <!-- el start -->
 +
    <div class="el">
 +
      <div class="el__overflow">
 +
        <div class="el__inner">
 +
          <div class="el__bg"></div>
 +
          <div class="el__preview-cont">
 +
            <h2 class="el__heading"><font color="white">Team</font></h2>
 +
          </div>
 +
          <div class="el__content">
 +
            <div class="el__text"></div>
 +
            <div class="container2">
 +
           
 +
          <p style="color:white;font-size:25px; font-family:arial; position:absolute;text-align:justify">The story of our team starts with four bioscience engineering students who were eager to expand their knowledge and learn vital practical skills. Almost one year later they were joined by nine motivated students and so the final 2017 KULeuven iGEM team was formed. A vast amount of meetings were followed by the actual lab work in the summer, but hard work was always varied with fantastic teambuilding activities. The great camaraderie is formed.
 +
                                            <a href="https://2017.igem.org/Team:KU_Leuven/Team">Meet our amazing team</a>
 +
         
 +
          <br>
 +
         
 +
          </p>
 +
                   
 +
 +
            </div>
 +
            <div class="el__close-btn"></div>
 +
          </div>
 +
        </div>
 +
      </div>
 +
      <div class="el__index">
 +
        <div class="el__index-back">2</div>
 +
        <div class="el__index-front">
 +
          <div class="el__index-overlay" data-index="2">2</div>
 +
        </div>
 +
      </div>
 +
    </div>
 +
    <!-- el end -->
 +
    <!-- el start -->
 +
    <div class="el">
 +
      <div class="el__overflow">
 +
        <div class="el__inner">
 +
          <div class="el__bg"></div>
 +
          <div class="el__preview-cont">
 +
            <h2 class="el__heading"><font color="white">KU LEUVEN</font></h2>
 +
          </div>
 +
          <div class="el__content">
 +
            <div class="el__text"></div>
 +
            <div class="container2">
 +
          <p style="color:white;font-size:20px; font-family:arial; position:absolute;text-align:justify">Located just 30 kilometers from Brussels lies the educational beating heart of Belgium, the city of Leuven. It is home to the KULeuven, one of the oldest universities in Europe. Allow us to tell you some fun facts about Leuven.<br>
 +
          <br>
 +
Fact number 1: Did you know that Leuven is famously home to the biggest bar in the world?
 +
<br>
 +
<br>
 +
Fact number 2: Around one third of the population of Leuven is a student at the university or works there. During summer, the streets of Leuven do indeed look emptier.
 +
<br>
 +
<br>
 +
Fact number 3: Every year in October there is a major sports event where the different student societies battle it out on the racing track. The society that ran the most of laps after 24 hours wins this prestigious competition.
 +
<br>
 +
<br>
 +
Want to know more about our university, click <a href="https://www.kuleuven.be/english/">here</a>
 +
</p>
 +
          </div>
 +
         
 +
           
 +
            <div class="el__close-btn"></div>
 +
          </div>
 +
        </div>
 +
      </div>
 +
      <div class="el__index">
 +
        <div class="el__index-back">3</div>
 +
        <div class="el__index-front">
 +
          <div class="el__index-overlay" data-index="3">3</div>
 +
        </div>
 +
      </div>
 +
    </div>
 +
    <!-- el end -->
 +
    <!-- el start -->
 +
    <div class="el">
 +
      <div class="el__overflow">
 +
        <div class="el__inner">
 +
          <div class="el__bg"></div>
 +
          <div class="el__preview-cont">
 +
            <h2 class="el__heading"><font color="white">Education</font></h2>
 +
          </div>
 +
          <div class="el__content">
 +
            <div class="el__text"></div>
 +
            <div class="container2">
 +
          <p style="color:white;font-size:25px; font-family:arial; position:absolute; text-align:justify;">Developing a card game that teaches you more about the immune system and its enemies, teaching children and young adults about biology and the importance of synthetic biology, doing fun experiments with children attending the children’s university event... Our team did all this and more to make sure that we left a positive impact on the next generation. Want to know more about our education project, click <a href="https://2017.igem.org/Team:KU_Leuven/HP/Education">here</a> </p>
 +
          </div>
 +
         
 +
 +
            <div class="el__close-btn"></div>
 +
          </div>
 +
        </div>
 +
      </div>
 +
      <div class="el__index">
 +
        <div class="el__index-back">4</div>
 +
        <div class="el__index-front">
 +
          <div class="el__index-overlay" data-index="4">4</div>
 +
        </div>
 +
      </div>
 +
    </div>
 +
    <!-- el end -->
 +
    <!-- el start -->
 +
    <div class="el">
 +
      <div class="el__overflow">
 +
        <div class="el__inner">
 +
          <div class="el__bg"></div>
 +
          <div class="el__preview-cont">
 +
            <h2 class="el__heading"><font color="white">Contact</font></h2>
 +
          </div>
 +
          <div class="el__content">
 +
            <div class="el__text"></div>
 +
            <div class="container2">
 +
          <p style="color:white;font-size:25px; font-family:arial; position:absolute;text-align:justify">You can contact the KU Leuven team through our <a href="https://www.facebook.com/KULeuveniGEM/">Facebook</a>page or via igem2017@kuleuven.be. So, send us some love, or if you have any questions feel free to ask them there!
 +
          </p>
 +
          </div>
 +
         
 +
            <div class="el__close-btn"></div>
 +
          </div>
 +
        </div>
 +
      </div>
 +
      <div class="el__index">
 +
        <div class="el__index-back">5</div>
 +
        <div class="el__index-front">
 +
          <div class="el__index-overlay" data-index="5">5</div>
 +
        </div>
 +
      </div>
 +
    </div>
 +
    <!-- el end -->
 +
  </div>
 +
</div>
 
<div style="text-align:center">
 
<div style="text-align:center">
 
<div class="animated_svg1">
 
<div class="animated_svg1">
 
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
 
<svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
viewBox="0 0 1651 1650.7" width="1000" Height="900" style="enable-background:new 0 0 1651 1650.7;" xml:space="none">
+
viewBox="0 0 1651 1650.7" width="100%" Height="100%" style="enable-background:new 0 0 1651 1650.7;" xml:space="none">
 
<g id="Shape_7_copy_1_" class="st0">
 
<g id="Shape_7_copy_1_" class="st0">
 
<g id="Shape_7_copy">
 
<g id="Shape_7_copy">
 
<g>
 
<g>
 
<path
 
<path
style="fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4000;stroke-dashoffset:0"
+
style="fill:none;stroke:#000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4000;stroke-dashoffset:0"
 
data-400-top="stroke-dashoffset:4000;" data-10-top-bottom="stroke-dashoffset:0;"
 
data-400-top="stroke-dashoffset:4000;" data-10-top-bottom="stroke-dashoffset:0;"
 
d="M799.2,1452.9c-133.6,0-252.7-163.9-259.2-199l0.9,1c27.7,32.7,65.6,77.5,109.3,113c51.8,42.2,100.3,62.7,148.1,62.7c105.8,0,143.7-73.6,155-105.2c3-8.2,7.5-12.9,12.5-12.9c2.9,0,5.8,1.7,7.7,4.6c2.8,4.1,3.2,9.5,1.2,14.5c-0.3,0.8-0.7,1.7-1.1,2.8c-4.3,11.2-15.6,41.1-41.9,67.8C898.6,1435.9,854,1452.9,799.2,1452.9z M1162.7,808.1c-3.2,0-6-1.4-7.5-3.7c-1.4-2.2-2.5-6.3,0.6-13.1c8.9-19.8,9-84.2-2.2-100.6c-5.5-8-6.9-15.3-5.4-18c0.4-0.8,1.1-1.2,2-1.2c1.5,0,5.9,1.2,14.6,12.4c18.9,24.4,14.6,100.8,9.8,115.5C1172.6,805.4,1167.2,808.1,1162.7,808.1C1162.7,808.1,1162.7,808.1,1162.7,808.1z M358.9,784.3c-5.8-50.6,0-110.5,16.4-169.3c17-61.1,44.8-118.3,78.2-161.1c3.5-3.6,7.3-5.7,10.2-5.7c1.8,0,3.2,0.8,3.9,2.4c1.3,2.8,0.3,8.4-6.2,15.7c-31.7,46.1-54.7,94.4-70.4,147.6c-13.8,47-20.4,91.7-26.7,134.9C362.4,761,360.7,772.7,358.9,784.3z M946.2,769.4c-3.9,0-7.2-2.2-9.1-6c-3-5.8-1.9-13.6,2.7-19.9c6.4-8.8,43.9-45.4,101.3-79.1c52-30.5,134.6-66.8,233.4-66.8c15.3,0,30.7,0.9,46,2.6c-49.9,2.9-98,11.3-142.9,24.8c-38.8,11.7-75.5,27.3-109,46.3c-58.8,33.4-93.1,69-104.1,84.8C958.4,764.7,952,769.4,946.2,769.4z M785.8,738.6c-2.8,0-5.5-1.1-7.4-3.2c-2.6-2.7-3.8-6.8-3.6-11.8c2.9-66.6-49.7-138.8-77.2-161c-5.2-4.2-5.6-10.1-4.1-14.2c1.7-4.8,5.8-8,10.5-8c3.2,0,6.6,1.4,9.8,4.2c57.8,49.4,81.4,127.2,84.1,178.7c0.3,6-1.9,9.6-3.7,11.6C791.8,737.3,788.8,738.6,785.8,738.6C785.8,738.6,785.8,738.6,785.8,738.6z M994.6,596.3c-8.7,0-14.5-5-20.5-11.1c-47.7-47.7-105.6-90.9-163.1-121.5c-5-2.8-7.6-6.9-6.6-10.7c1-3.9,5.1-6.3,10.4-6.3c2.7,0,5.6,0.6,8.7,1.9c39.3,16,97.6,57.6,173.1,123.5l0.3,0.2l0.3-0.2c12.5-7.1,53.7-24.7,111.2-41.4c46.2-13.4,114.2-29.4,176.2-29.4c10.7,0,20.9,0.5,30.5,1.4c-195.7,32.3-253.3,62.7-287.8,81c-7.4,3.9-13.8,7.3-20.2,9.9C1002.4,595.4,998.3,596.3,994.6,596.3z M537.3,428c-3.2,0-6.7-1.2-10.2-3.4c-7.4-4.7-28.1-16.8-61.2-27.7c-40.6-13.3-85.2-20.1-132.5-20.1c-8.4,0-16.9,0.2-25.5,0.6c20.1-6.2,43.1-9.4,68.2-9.4c76.3,0,149.4,28.6,162.2,37.6c8.1,5.8,9.6,12.1,8.4,16.1C545.4,425.6,541.8,428,537.3,428C537.3,428,537.3,428,537.3,428z M602.5,334.6c-3.2,0-6.7-1.2-10.2-3.4c-21.3-13.6-44.9-25.4-70-35.1c-47.2-18.1-96.1-27.3-145.4-27.3c-6.3,0-12.6,0.2-18.8,0.5c16.4-5,35.2-7.5,56-7.5c44.8,0,90.2,11.6,120.4,21.4c35.3,11.4,61.6,24,69.1,29.2c8.1,5.8,9.6,12.1,8.4,16.1C610.7,332.3,607.1,334.6,602.5,334.6z">
 
d="M799.2,1452.9c-133.6,0-252.7-163.9-259.2-199l0.9,1c27.7,32.7,65.6,77.5,109.3,113c51.8,42.2,100.3,62.7,148.1,62.7c105.8,0,143.7-73.6,155-105.2c3-8.2,7.5-12.9,12.5-12.9c2.9,0,5.8,1.7,7.7,4.6c2.8,4.1,3.2,9.5,1.2,14.5c-0.3,0.8-0.7,1.7-1.1,2.8c-4.3,11.2-15.6,41.1-41.9,67.8C898.6,1435.9,854,1452.9,799.2,1452.9z M1162.7,808.1c-3.2,0-6-1.4-7.5-3.7c-1.4-2.2-2.5-6.3,0.6-13.1c8.9-19.8,9-84.2-2.2-100.6c-5.5-8-6.9-15.3-5.4-18c0.4-0.8,1.1-1.2,2-1.2c1.5,0,5.9,1.2,14.6,12.4c18.9,24.4,14.6,100.8,9.8,115.5C1172.6,805.4,1167.2,808.1,1162.7,808.1C1162.7,808.1,1162.7,808.1,1162.7,808.1z M358.9,784.3c-5.8-50.6,0-110.5,16.4-169.3c17-61.1,44.8-118.3,78.2-161.1c3.5-3.6,7.3-5.7,10.2-5.7c1.8,0,3.2,0.8,3.9,2.4c1.3,2.8,0.3,8.4-6.2,15.7c-31.7,46.1-54.7,94.4-70.4,147.6c-13.8,47-20.4,91.7-26.7,134.9C362.4,761,360.7,772.7,358.9,784.3z M946.2,769.4c-3.9,0-7.2-2.2-9.1-6c-3-5.8-1.9-13.6,2.7-19.9c6.4-8.8,43.9-45.4,101.3-79.1c52-30.5,134.6-66.8,233.4-66.8c15.3,0,30.7,0.9,46,2.6c-49.9,2.9-98,11.3-142.9,24.8c-38.8,11.7-75.5,27.3-109,46.3c-58.8,33.4-93.1,69-104.1,84.8C958.4,764.7,952,769.4,946.2,769.4z M785.8,738.6c-2.8,0-5.5-1.1-7.4-3.2c-2.6-2.7-3.8-6.8-3.6-11.8c2.9-66.6-49.7-138.8-77.2-161c-5.2-4.2-5.6-10.1-4.1-14.2c1.7-4.8,5.8-8,10.5-8c3.2,0,6.6,1.4,9.8,4.2c57.8,49.4,81.4,127.2,84.1,178.7c0.3,6-1.9,9.6-3.7,11.6C791.8,737.3,788.8,738.6,785.8,738.6C785.8,738.6,785.8,738.6,785.8,738.6z M994.6,596.3c-8.7,0-14.5-5-20.5-11.1c-47.7-47.7-105.6-90.9-163.1-121.5c-5-2.8-7.6-6.9-6.6-10.7c1-3.9,5.1-6.3,10.4-6.3c2.7,0,5.6,0.6,8.7,1.9c39.3,16,97.6,57.6,173.1,123.5l0.3,0.2l0.3-0.2c12.5-7.1,53.7-24.7,111.2-41.4c46.2-13.4,114.2-29.4,176.2-29.4c10.7,0,20.9,0.5,30.5,1.4c-195.7,32.3-253.3,62.7-287.8,81c-7.4,3.9-13.8,7.3-20.2,9.9C1002.4,595.4,998.3,596.3,994.6,596.3z M537.3,428c-3.2,0-6.7-1.2-10.2-3.4c-7.4-4.7-28.1-16.8-61.2-27.7c-40.6-13.3-85.2-20.1-132.5-20.1c-8.4,0-16.9,0.2-25.5,0.6c20.1-6.2,43.1-9.4,68.2-9.4c76.3,0,149.4,28.6,162.2,37.6c8.1,5.8,9.6,12.1,8.4,16.1C545.4,425.6,541.8,428,537.3,428C537.3,428,537.3,428,537.3,428z M602.5,334.6c-3.2,0-6.7-1.2-10.2-3.4c-21.3-13.6-44.9-25.4-70-35.1c-47.2-18.1-96.1-27.3-145.4-27.3c-6.3,0-12.6,0.2-18.8,0.5c16.4-5,35.2-7.5,56-7.5c44.8,0,90.2,11.6,120.4,21.4c35.3,11.4,61.6,24,69.1,29.2c8.1,5.8,9.6,12.1,8.4,16.1C610.7,332.3,607.1,334.6,602.5,334.6z">
Line 105: Line 830:
 
<g>
 
<g>
 
<path
 
<path
style="fill:none;stroke:#ffffff;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4000;stroke-dashoffset:0"
+
style="fill:none;stroke:#000;stroke-width:4;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:4000;stroke-dashoffset:0"
 
data-800-top="stroke-dashoffset:4000;" data-10-top-bottom="stroke-dashoffset:0;" d="M1206.2,1190.4h16.8v-130.1h-16.8V1190.4z M1135.3,1075c1.1,0,2.1,0,3.2,0.1c0.3,0,0.6,0,1,0.1c0.8,0.1,1.5,0.1,2.3,0.2c0.3,0,0.7,0.1,1,0.1c0.8,0.1,1.7,0.2,2.5,0.4c0.2,0,0.4,0.1,0.6,0.1c1,0.2,2,0.4,3,0.7c0.2,0,0.4,0.1,0.6,0.2c0.8,0.2,1.6,0.4,2.4,0.7c0.3,0.1,0.5,0.2,0.8,0.3c0.8,0.3,1.5,0.5,2.3,0.8c0.2,0.1,0.4,0.1,0.6,0.2c1.9,0.8,3.8,1.6,5.6,2.6c0.1,0.1,0.3,0.2,0.4,0.2c0.8,0.4,1.6,0.9,2.3,1.3c0.1,0.1,0.3,0.2,0.4,0.2c2.7,1.7,5.2,3.5,7.5,5.6c0.1,0.1,0.1,0.1,0.2,0.2c2.3,2.1,4.5,4.4,6.4,6.9c0,0,0,0,0,0c0.6,0.8,1.2,1.7,1.8,2.6l12.8-8.5c-12.2-17.9-33.4-29.7-57.5-29.7c-37.8,0-68.5,29.1-68.5,65c0,35.9,30.7,65,68.5,65c24.1,0,45.2-11.8,57.4-29.6l-13-8.4c-9.4,13.9-25.8,23.1-44.5,23.1c-29.2,0-52.9-22.5-52.9-50.2S1106.1,1075,1135.3,1075z M1425.1,1125.4C1425.1,1125.4,1425.1,1125.4,1425.1,1125.4c0-36-28.1-65.1-62.8-65.1c-34.7,0-62.8,29.1-62.8,65c0,35.9,28.1,65,62.8,65c25.1,0,46.8-15.3,56.8-37.4l-13.2-6.8c-7.7,17.2-24.5,29.2-44,29.2c-26.6,0-48.2-22.3-48.4-49.8h96.4L1425.1,1125.4z M1315.3,1111.9c5.6-21.3,24.4-36.9,46.7-36.9s41.1,15.6,46.7,36.9H1315.3z M1276.3,1016.4h-16.8v43.9h-22.8v14.2h22.8v115.9h16.8v-115.9h22.8v-14.2h-22.8V1016.4z M1214.8,1024.9c-6.4,0-11.5,5.2-11.5,11.5s5.2,11.5,11.5,11.5s11.5-5.2,11.5-11.5S1221.1,1024.9,1214.8,1024.9z">
 
data-800-top="stroke-dashoffset:4000;" data-10-top-bottom="stroke-dashoffset:0;" d="M1206.2,1190.4h16.8v-130.1h-16.8V1190.4z M1135.3,1075c1.1,0,2.1,0,3.2,0.1c0.3,0,0.6,0,1,0.1c0.8,0.1,1.5,0.1,2.3,0.2c0.3,0,0.7,0.1,1,0.1c0.8,0.1,1.7,0.2,2.5,0.4c0.2,0,0.4,0.1,0.6,0.1c1,0.2,2,0.4,3,0.7c0.2,0,0.4,0.1,0.6,0.2c0.8,0.2,1.6,0.4,2.4,0.7c0.3,0.1,0.5,0.2,0.8,0.3c0.8,0.3,1.5,0.5,2.3,0.8c0.2,0.1,0.4,0.1,0.6,0.2c1.9,0.8,3.8,1.6,5.6,2.6c0.1,0.1,0.3,0.2,0.4,0.2c0.8,0.4,1.6,0.9,2.3,1.3c0.1,0.1,0.3,0.2,0.4,0.2c2.7,1.7,5.2,3.5,7.5,5.6c0.1,0.1,0.1,0.1,0.2,0.2c2.3,2.1,4.5,4.4,6.4,6.9c0,0,0,0,0,0c0.6,0.8,1.2,1.7,1.8,2.6l12.8-8.5c-12.2-17.9-33.4-29.7-57.5-29.7c-37.8,0-68.5,29.1-68.5,65c0,35.9,30.7,65,68.5,65c24.1,0,45.2-11.8,57.4-29.6l-13-8.4c-9.4,13.9-25.8,23.1-44.5,23.1c-29.2,0-52.9-22.5-52.9-50.2S1106.1,1075,1135.3,1075z M1425.1,1125.4C1425.1,1125.4,1425.1,1125.4,1425.1,1125.4c0-36-28.1-65.1-62.8-65.1c-34.7,0-62.8,29.1-62.8,65c0,35.9,28.1,65,62.8,65c25.1,0,46.8-15.3,56.8-37.4l-13.2-6.8c-7.7,17.2-24.5,29.2-44,29.2c-26.6,0-48.2-22.3-48.4-49.8h96.4L1425.1,1125.4z M1315.3,1111.9c5.6-21.3,24.4-36.9,46.7-36.9s41.1,15.6,46.7,36.9H1315.3z M1276.3,1016.4h-16.8v43.9h-22.8v14.2h22.8v115.9h16.8v-115.9h22.8v-14.2h-22.8V1016.4z M1214.8,1024.9c-6.4,0-11.5,5.2-11.5,11.5s5.2,11.5,11.5,11.5s11.5-5.2,11.5-11.5S1221.1,1024.9,1214.8,1024.9z">
 
</path>
 
</path>
Line 123: Line 848:
 
                            <rect x="200" y="2100" display="inline" opacity="0" fill="#000000" width="200" height="200" />
 
                            <rect x="200" y="2100" display="inline" opacity="0" fill="#000000" width="200" height="200" />
 
                        </a>
 
                        </a>
                        <a xlink:href="#game">
+
                        <a xlink:href="https://2017.igem.org/Team:KU_Leuven/Design">  
                            <rect x="800" y="2100" display="inline" opacity="0" fill="#000000" width="200" height="200" />
+
 
                        </a>
 
                        </a>
                        <a xlink:href="https://2017.igem.org/Team:KU_Leuven/HP/Gold_Integrated">
+
                        <a xlink:href="https://2017.igem.org/Team:KU_Leuven/HP/HP_Main">
 
                            <rect x="200" y="2500" display="inline" opacity="0" fill="#000000" width="200" height="200" />
 
                            <rect x="200" y="2500" display="inline" opacity="0" fill="#000000" width="200" height="200" />
 
                        </a>
 
                        </a>
                        <a xlink:href="#education">
+
                        <a xlink:href="https://2017.igem.org/Team:KU_Leuven/HP/Education">
 
                            <rect x="800" y="2500" display="inline" opacity="0" fill="#000000" width="200" height="200" />
 
                            <rect x="800" y="2500" display="inline" opacity="0" fill="#000000" width="200" height="200" />
 
                        </a>
 
                        </a>
Line 172: Line 896:
 
         }
 
         }
  
         // disable skrollr if the window is resized below 768px wide
+
          
        $(window).on('resize', function() {
+
            if ($(window).width() <= 767) {
+
                skrollr.init().destroy(); // skrollr.init() returns the singleton created above
+
            }
+
        });
+
 
     });
 
     });
 
    $('#scrolldown').click(function(event) {
 
        event.preventDefault();
 
        var n = $('.home .fg').height();
 
        $('html, body').animate({ scrollTop: n - 15 }, 1000);
 
    });
 
 
 
</script>
 
</script>
 
</div>
 
</div>
Line 206: Line 918:
 
                 <a href="http://lrd.kuleuven.be/en">
 
                 <a href="http://lrd.kuleuven.be/en">
 
                     <li class="col-sm-3">
 
                     <li class="col-sm-3">
                         <div><img src="https://static.igem.org/mediawiki/2017/d/d5/Logo_Lcie-01.png" /></div>
+
                         <div><img src="https://static.igem.org/mediawiki/2017/9/9f/KU_Leuven-sponsor-lrd.png" /></div>
 +
                    </li>
 +
                </a>
 +
                <a href="http://lrd.kuleuven.be/en">
 +
                    <li class="col-sm-3">
 +
                        <div><img src="https://static.igem.org/mediawiki/2017/5/52/Lcie_Logo_KU_Leuven.png" /></div>
 
                     </li>
 
                     </li>
 
                 </a>
 
                 </a>
Line 231: Line 948:
 
                 <a href="#">
 
                 <a href="#">
 
                     <li class="col-sm-3">
 
                     <li class="col-sm-3">
                         <div>Tillion-S.S.T</div>
+
                         <div><img src="https://static.igem.org/mediawiki/2017/c/c0/Tillion_logo.png" /></div>
 
                     </li>
 
                     </li>
 
                 </a>
 
                 </a>
Line 275: Line 992:
 
                     <li class="col-sm-3">
 
                     <li class="col-sm-3">
 
                         <div><img src="https://static.igem.org/mediawiki/2017/e/ec/KU_Leuven-sponsor-agilent.jpg" /></div>
 
                         <div><img src="https://static.igem.org/mediawiki/2017/e/ec/KU_Leuven-sponsor-agilent.jpg" /></div>
 +
                    </li>
 +
                </a>
 +
<a href="">
 +
                    <li class="col-sm-3">
 +
                        <div><img src="https://static.igem.org/mediawiki/2017/3/3b/T--KU_Leuven--Sponsor-Img-Missing.png" /></div>
 
                     </li>
 
                     </li>
 
                 </a>
 
                 </a>

Latest revision as of 17:11, 6 June 2018

Project

HEKcite

Inspired by the heart and its rhythm, our team sought to aid those who need continuous drug monitoring. To achieve this goal, we transformed ourselves into real dance instructors as we introduced a continuous rhythm in HEK cells. Our cells performed wonderfully so we are very proud to present you: HEKcite!

1
1

Team

The story of our team starts with four bioscience engineering students who were eager to expand their knowledge and learn vital practical skills. Almost one year later they were joined by nine motivated students and so the final 2017 KULeuven iGEM team was formed. A vast amount of meetings were followed by the actual lab work in the summer, but hard work was always varied with fantastic teambuilding activities. The great camaraderie is formed. Meet our amazing team

2
2

KU LEUVEN

Located just 30 kilometers from Brussels lies the educational beating heart of Belgium, the city of Leuven. It is home to the KULeuven, one of the oldest universities in Europe. Allow us to tell you some fun facts about Leuven.

Fact number 1: Did you know that Leuven is famously home to the biggest bar in the world?

Fact number 2: Around one third of the population of Leuven is a student at the university or works there. During summer, the streets of Leuven do indeed look emptier.

Fact number 3: Every year in October there is a major sports event where the different student societies battle it out on the racing track. The society that ran the most of laps after 24 hours wins this prestigious competition.

Want to know more about our university, click here

3
3

Education

Developing a card game that teaches you more about the immune system and its enemies, teaching children and young adults about biology and the importance of synthetic biology, doing fun experiments with children attending the children’s university event... Our team did all this and more to make sure that we left a positive impact on the next generation. Want to know more about our education project, click here

4
4

Contact

You can contact the KU Leuven team through our Facebookpage or via igem2017@kuleuven.be. So, send us some love, or if you have any questions feel free to ask them there!

5
5