Difference between revisions of "Team:Paris Bettencourt/Wiki"

(CSS for the wiki)
 
 
(11 intermediate revisions by the same user not shown)
Line 4: Line 4:
 
<link href='http://fonts.googleapis.com/css?family=Great+Vibes' rel='stylesheet' type='text/css'>
 
<link href='http://fonts.googleapis.com/css?family=Great+Vibes' rel='stylesheet' type='text/css'>
 
<link href='http://fonts.googleapis.com/css?family=Arimo:400,400italic' rel='stylesheet' type='text/css'>
 
<link href='http://fonts.googleapis.com/css?family=Arimo:400,400italic' rel='stylesheet' type='text/css'>
 +
<meta http-equiv="Content-Type" content="text/html;charset=ISO-8859-1">
 +
<meta charset="UTF-8">
 
<style type="text/css">
 
<style type="text/css">
 +
 +
/* ACCORDION */
 +
.accordion {
 +
}
 +
.accordionTitel {
 +
    cursor: pointer;
 +
    border: 1px solid #C7C7C7;
 +
    font-size: 13px;
 +
    font-family: Tahoma, Arial;
 +
    font-weight: bold;
 +
    padding: 3px 10px;
 +
    display: block;
 +
    margin-top:5px;
 +
    border-radius: 5px;
 +
    /* background */
 +
    background: #EEEEEE; /* Old browsers */
 +
    background: -moz-linear-gradient(top, rgb(228, 228, 228) 20%, rgb(255, 255, 255) 100%); /* FF3.6+ */
 +
    background: -webkit-gradient(linear, left top, left bottom, color-stop(20%, rgb(228, 228, 228) ), color-stop(100%,#FFFFFF )); /* Chrome,Safari4+ */
 +
    background: -webkit-linear-gradient(top, rgb(228, 228, 228) 20%,rgb(255, 255, 255) 100%); /* Chrome10+,Safari5.1+ */
 +
    background: -o-linear-gradient(top, rgb(228, 228, 228) 20%,rgb(255, 255, 255) 100%); /* Opera 11.10+ */
 +
    background: -ms-linear-gradient(top, rgb(228, 228, 228) 20%, rgb(255, 255, 255) 100%); /* IE10+ */
 +
    background: linear-gradient(to bottom, rgb(228, 228, 228) 20%,rgb(255, 255, 255) 100%); /* W3C */
 +
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#E4E4E4', endColorstr='#FFFFFF',GradientType=0 ); /* IE6-9 */
 +
}
 +
.accordionTitel:hover {
 +
border: 1px solid #A5A5A5;
 +
background: rgb(219,219,219); /* Old browsers */
 +
/* IE9 SVG, needs conditional override of 'filter' to 'none' */
 +
background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9Ijk5JSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgPC9saW5lYXJHcmFkaWVudD4KICA8cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMSIgaGVpZ2h0PSIxIiBmaWxsPSJ1cmwoI2dyYWQtdWNnZy1nZW5lcmF0ZWQpIiAvPgo8L3N2Zz4=);
 +
background: -moz-linear-gradient(top,  rgba(219,219,219,1) 0%, rgba(238,238,238,1) 99%); /* FF3.6+ */
 +
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(219,219,219,1)), color-stop(99%,rgba(238,238,238,1))); /* Chrome,Safari4+ */
 +
background: -webkit-linear-gradient(top,  rgba(219,219,219,1) 0%,rgba(238,238,238,1) 99%); /* Chrome10+,Safari5.1+ */
 +
background: -o-linear-gradient(top,  rgba(219,219,219,1) 0%,rgba(238,238,238,1) 99%); /* Opera 11.10+ */
 +
background: -ms-linear-gradient(top,  rgba(219,219,219,1) 0%,rgba(238,238,238,1) 99%); /* IE10+ */
 +
background: linear-gradient(to bottom,  rgba(219,219,219,1) 0%,rgba(238,238,238,1) 99%); /* W3C */
 +
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#dbdbdb', endColorstr='#eeeeee',GradientType=0 ); /* IE6-8 */
 +
}
 +
 +
.accordion div.pane {
 +
    border-radius: 5px;
 +
    padding: 10px;
 +
    margin-top:3px;
 +
    margin-bottom: 10px;
 +
    display: none;
 +
    border: 1px solid #C7C7C7;
 +
}
 +
.accordion div.current {
 +
    display: block;
 +
}
 +
 
/* Wiki styles */
 
/* Wiki styles */
  
Line 76: Line 128:
 
}
 
}
 
#footer-box{/* la boite en bas de page*/
 
#footer-box{/* la boite en bas de page*/
     position : relative;
+
     position : absolute;
 
     width:100%;  
 
     width:100%;  
 
     border:none;
 
     border:none;
     bottom:-190px;
+
     bottom:0px;
 
     color:rgb(255,255,255);
 
     color:rgb(255,255,255);
 
     background : rgb(193,185,184);
 
     background : rgb(193,185,184);
Line 115: Line 167:
 
     font-weight: bold;
 
     font-weight: bold;
 
}
 
}
 +
.red h2{
 +
font-size: 28px;
 +
}
 +
 
h3,h4 {
 
h3,h4 {
 
     font-size:20px;
 
     font-size:20px;
Line 158: Line 214:
  
 
</style>
 
</style>
 +
 +
<script src="https://2013.igem.org/Team:SDU-Denmark/core/scripts2?action=raw&ctype=text/javascript" type="text/javascript" ></script>
 +
 
</html>
 
</html>

Latest revision as of 21:49, 19 October 2016