Team:UNITN-Trento/CSS/Project

From 2013.igem.org

(Difference between revisions)
Line 1: Line 1:
.silhouette img {
.silhouette img {
     margin-bottom: 0 !important;
     margin-bottom: 0 !important;
 +
}
 +
 +
.container {
 +
    text-align: center;
 +
}
 +
 +
.container .menu {
 +
    margin: 0 auto;
 +
    width: 900px;
 +
}
 +
 +
.container .menu a {
 +
    display: inline-block;
 +
   
 +
    margin: 20px auto;
 +
    padding: 4px;
 +
    min-width: 92px;
 +
    max-width: 110px;
 +
   
 +
    background-color: rgba(250,250,250,.6);
 +
    border: 3px solid transparent;
 +
    border-radius: 5px;
 +
   
 +
    color: rgb(105, 18, 28);
 +
    font-family: "Boogaloo", sans-serif;
 +
    font-size: 1.2em;
 +
    text-align: center;
 +
    text-decoration: none;
 +
}
 +
 +
.container .menu a:hover {
 +
    background-color: rgb(105, 18, 28);
 +
    border-color: white;
 +
    color: white;
}
}

Revision as of 07:55, 25 September 2013

.silhouette img {

   margin-bottom: 0 !important;

}

.container {

   text-align: center;

}

.container .menu {

   margin: 0 auto;
   width: 900px;

}

.container .menu a {

   display: inline-block;
   
   margin: 20px auto;
   padding: 4px;
   min-width: 92px;
   max-width: 110px;
   
   background-color: rgba(250,250,250,.6);
   border: 3px solid transparent;
   border-radius: 5px;
   
   color: rgb(105, 18, 28);
   font-family: "Boogaloo", sans-serif;
   font-size: 1.2em;
   text-align: center;
   text-decoration: none;

}

.container .menu a:hover {

   background-color: rgb(105, 18, 28);
   border-color: white;
   color: white;

}