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

Line 32: Line 32:
 
.details p {
 
.details p {
 
width: 35vw !important;
 
width: 35vw !important;
}
 
.details .social {
 
    display: flex; 
 
    width: 35vw;
 
    margin: 1vmax 0vmax 1vmax 0vmax;
 
    justify-content: center;
 
}
 
.social .links {
 
    font-family: social;
 
    font-size: 4vmax;
 
    margin: 1vmax;
 
    color: #222222;
 
    text-decoration: none;
 
    -webkit-transition: 0.2s linear;
 
    -moz-transition: 0.2s linear;
 
    -o-transition: 0.2s linear;
 
    transition: 0.2s linear; 
 
}
 
.socFacebook:hover {
 
    color: #3b5998;
 
}
 
.socTwitter:hover {
 
    color: #00aced;
 
 
}
 
}

Revision as of 16:18, 11 October 2018

.pagelink#teamMenu a {

   color: plum;

}

  1. sidenav {

background-color: plum; } .subpage h1.subheading {

  border-bottom: 0.3vw solid plum !important;

}

.person { display: flex;

   width: 70vw;
   height: auto;
   margin: 1vmax 0vmax 1vmax 0vmax;
   align-items: center;

} .person .photo { width: 20vw;

   height: 20vw;
   margin: 2vmax;
   background-color: white;

} .person .details { display: flex; flex-direction: column; align-items: center; width: 40vw;

   height: auto;
   margin: 2vmax;

} .details p { width: 35vw !important; }