Difference between revisions of "Team:IISER-Kolkata/style.css"

Line 65: Line 65:
 
     position: absolute;
 
     position: absolute;
 
     top: 100vh;
 
     top: 100vh;
     left: 0vw;
+
     left: 0.5vw;
 
     z-index: 10;
 
     z-index: 10;
 
}
 
}
 
#menubar.stickymenu {
 
#menubar.stickymenu {
 
     position: fixed;
 
     position: fixed;
     top: 0vh;
+
     top: 0.5vh;
 
}
 
}
 
#menubar #logo {
 
#menubar #logo {
Line 205: Line 205:
 
     height: 6vw;
 
     height: 6vw;
 
     width: auto;
 
     width: auto;
}
 
#home #social {
 
    height: 20vw;
 
    width: 3vw;   
 
    display: flex;
 
    flex-direction: column;
 
    align-items: center; 
 
    position: absolute;
 
    top: 50vh;
 
    margin-top: -10vw;
 
    right: 2vw;
 
    z-index: 5;
 
}
 
#social .links {
 
    height: 3vw;
 
    width: 3vw;
 
    margin: 1vw 0vw 1vw 0vw;
 
    display: flex;
 
    justify-content: center;
 
    align-items: center;
 
    cursor: pointer;
 
}
 
#social .links a {
 
    font-family: social;
 
    font-size: 4vw;
 
    color: black;
 
    text-decoration: none;
 
}
 
#soc-facebook:hover > a {
 
    color: #3b5998;
 
}
 
#soc-twitter:hover > a {
 
    color: #00aced;
 
}
 
#soc-instagram:hover > a {
 
    color: #c32aa3;
 
}
 
#soc-youtube:hover > a {
 
    color: #bb0000;
 
 
}
 
}
 
#home #pagedown {
 
#home #pagedown {
 
     position: absolute;
 
     position: absolute;
     top: 90vh;
+
     top: 80vh;
 
     left: 47vw;
 
     left: 47vw;
 
     height: 3vw;
 
     height: 3vw;

Revision as of 03:45, 23 June 2018

.logo_2018, #firstHeading { display:none;}

/*fonts*/ @font-face {

   src: url("https://2018.igem.org/File:T--IISER-Kolkata--blogger.ttf");
   font-family: blogger;

} @font-face {

   src: url("https://2018.igem.org/File:T--IISER-Kolkata--prime.otf");
   font-family: prime;

} @font-face {

   src: url("https://2018.igem.org/File:T--IISER-Kolkata--rodina.otf");
   font-family: rodina;

} @font-face {

   src: url("https://2018.igem.org/File:T--IISER-Kolkata--social.ttf");
   font-family: social;

}

/*body*/ body, html { width: 100vw; margin: 0; padding: 0; } body {

   height: 1200vh;

overflow-y: scroll; overflow-x: hidden; margin: auto; } body::-webkit-scrollbar-track { background-color: black; } body::-webkit-scrollbar { width: 1vw; } body::-webkit-scrollbar-thumb { background-color: #999999; } body::-webkit-scrollbar-thumb:hover {

   background-color: #777777;

}

  1. container {

height: 1200vh; width: 100vw; display: flex; flex-direction: column; }

/*navbar*/

  1. menubar {

width: 100vw;

   height: 3vw;
   background-color: rgba(0,0,0,0.7);
   display: inline-flex;
   align-items: center;  
   position: absolute;
   top: 100vh;
   left: 0.5vw;
   z-index: 10;

}

  1. menubar.stickymenu {
   position: fixed;
   top: 0.5vh;

}

  1. menubar #logo {
   margin-left: 1vw;
   margin-right: 1vw;
   display: flex;
   width: 2.5vw;
   height: 2.5vw;     

}

  1. logo img {
   height: 100%;
   width: 100%;

}

  1. menubar .pagelink {
   display: flex;  
   align-items: center;
   justify-content: center;   
   height: 100%;
   width: 8vw;        

}

  1. menubar .pagelink#registerMenu {
   margin-left: auto;

}

  1. menubar .pagelink#loginMenu {
   margin-right: 1vw;

} .pagelink div {

   cursor: pointer;
   -webkit-transition: 0.2s linear;
   -moz-transition: 0.2s linear;
   -o-transition: 0.2s linear;
   transition: 0.2s linear;

} .pagelink div p {

   font-family: prime;
   font-size: 1.3vw; 
   color: #cccccc;   

} .pagelink div:hover > p {

   color: white !important;

}

  1. register {
   position: fixed;
   display: flex;
   height: 40vw;
   width: 40vw;
   left: -45vw;
   top: 50vh;
   margin-top: -20vw;
   background-color: white;
   border: 0.2vw solid black;
   border-radius: 2vw;
   z-index: 10;
   -webkit-transition: 0.2s linear;
   -moz-transition: 0.2s linear;
   -o-transition: 0.2s linear;
   transition: 0.2s linear;

}

  1. login {
   position: fixed;
   display: flex;
   height: 20vw;
   width: 30vw;
   left: -35vw;
   top: 50vh;
   margin-top: -10vw;
   background-color: white;
   border: 0.2vw solid black;
   border-radius: 2vw;
   z-index: 10;
   -webkit-transition: 0.2s linear;
   -moz-transition: 0.2s linear;
   -o-transition: 0.2s linear;
   transition: 0.2s linear;

} .orangetext div p {

   color: orange !important;

} .orangetext div:hover > p {

   color: yellow !important;

}

  1. login .exit, #register .exit {
   position: absolute;
   top: 1vw;
   right: 1vw;
   height: 3vw;
   width: 3vw;
   border-radius: 100%;
   font-family: rodina;
   font-weight: bold;
   font-size: 3vw;
   cursor: pointer;
   color: black;
   z-index: 1;
   display: flex;
   align-items: center;
   justify-content: center;
   -webkit-transition: 0.2s linear;
   -moz-transition: 0.2s linear;
   -o-transition: 0.2s linear;
   transition: 0.2s linear;

}

  1. login .exit:hover, #register .exit:hover {
   background-color: black;
   color: white;

}

section { position: relative; display: flex; height: 200vh; width: 100vw; }

  1. home {
   background: white;
   height: 100vh;

}

  1. home #iiserk {
   height: 6vw;
   width: 6vw;    
   display: flex;
   align-items: center;  
   position: absolute;
   top: 1vw;
   left: 1vw;
   z-index: 5;
   cursor: pointer;

}

  1. iiserk:hover {

}

  1. iiserk a img {
   height: 6vw;
   width: auto;

}

  1. home #pagedown {
   position: absolute;
   top: 80vh;
   left: 47vw;
   height: 3vw;
   width: 6vw;
   font-size: 2vw;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: gray;
   border: solid black 0.1vw;

}

/*aboutUs page*/

  1. aboutUs {

background-color: chartreuse; }


/*events page*/

  1. events {
   background-color: yellow;

}

  1. gallery {
   background-color: orange;

}

  1. ourTeam {
   background-color: darkorchid;

}

  1. sponsors {
   background-color: goldenrod;

}

  1. reachUs {
   background-color: pink;
   height: 100vh;

}