Template:Team:BGU Israel/style.css

From 2014.igem.org

(Difference between revisions)
 
(65 intermediate revisions not shown)
Line 2: Line 2:
<style>
<style>
/*wiki*/
/*wiki*/
 +
 +
 +
li
 +
{
 +
margin-bottom:0px;
 +
}
 +
p
 +
{
 +
line-height:normal;
 +
margin: 1.12em 0;
 +
 +
}
 +
 +
#top-section{/* the igem flag + top menu)*/
#top-section{/* the igem flag + top menu)*/
     position:fixed;   
     position:fixed;   
Line 17: Line 31:
     height:auto;
     height:auto;
     margin:0 auto;
     margin:0 auto;
 +
font-size:100%;
     padding:0;
     padding:0;
}
}
-
#menubar {/* la barre de menu du haut */
+
#menubar {
     display:none;
     display:none;
     margin:0;
     margin:0;
Line 26: Line 41:
     height:20px;
     height:20px;
     color:white;
     color:white;
-
     background-color:rgb(46,43,52);
+
     background-color:black;
     text-decoration:none;
     text-decoration:none;
     font-size:12px;
     font-size:12px;
     z-index:0;
     z-index:0;
 +
top:0px;
}
}
#search-controls{
#search-controls{
Line 52: Line 68:
}
}
#content{
#content{
-
border: none;
+
    border:none;
-
     top:5px;
+
     padding:0;
 +
    margin:0;
 +
    z-index:1;
     width:100%;
     width:100%;
 +
    height:auto;
 +
    background:#ffffff;
 +
line-height:normal;
 +
}
 +
#bodyContent{
 +
    background-color:white;
 +
    border:none;
 +
    border-color:none;
 +
    padding:0;
 +
    height:auto;
 +
    width:1100px;
 +
    margin:0 auto;
 +
}
 +
#contentSub,  #footer-box{
 +
display:none;
}
}
-
 
-
/*grid*/
 
-
 
-
 
body {
body {
}
}
Line 129: Line 158:
float: left;
float: left;
margin-right: 12px;
margin-right: 12px;
-
margin-left: 6px;
+
overflow: hidden;
overflow: hidden;
}
}
Line 450: Line 479:
#strat1_text {
#strat1_text {
display: none;
display: none;
-
visibility: hidden;
 
}
}
Line 472: Line 500:
display: none;
display: none;
}
}
 +
 +
 +
.hgrid_qh
 +
{
 +
width: 220px;
 +
height: 600px;
 +
float: left;
 +
margin-right: 12px;
 +
overflow: hidden;
 +
}
 +
 +
.hgrid_3qh
 +
{
 +
width: 595px;
 +
height: 600px;
 +
border-radius: 8px;
 +
float: left;
 +
margin-right: 12px;
 +
overflow: hidden;
 +
}
 +
.hgrid_3h {
 +
width: 220px;
 +
height: 124px;
 +
border-radius: 8px;
 +
margin-right: 12px;
 +
margin-bottom: 6px;
 +
overflow: hidden;
 +
position: relative;
 +
text-align: left;
 +
float: left;
 +
font-weight: normal;
 +
}
 +
 +
/*gallery*/
 +
 +
/*
 +
  Container for the gallery:
 +
 +
  Absolutely positioned
 +
  Stretch to fill the whole window width
 +
  Fixed height
 +
  Hide the overflow to prevent horizontal scrollbars
 +
 +
  Vertically centred in the viewport: http://css-discuss.incutio.com/wiki/Centering_Block_Element#Centering_an_absolutely_positioned_element
 +
*/
 +
 +
#galleryContainer {
 +
width: 100%;
 +
height: 500px;        /* Image height + 200px */
 +
overflow: hidden;
 +
position: relative;
 +
top: -40px;
 +
bottom: 0;
 +
margin-top: auto;
 +
margin-bottom: auto;
 +
z-index: 1;
 +
}
 +
 +
 +
/*
 +
  The gallery div that contains all the images
 +
 +
  We'll set the width dynamically in the JavaScript as the images load
 +
*/
 +
 +
#gallery {
 +
  width: 100px;
 +
  height: 400px;        /* Image height + 100px */
 +
  padding: 50px 0;
 +
  position: relative;
 +
  z-index: 1;
 +
}
 +
 +
 +
/*
 +
  Individual slides within the gallery:
 +
 +
  Float them left so that they're all side by side
 +
  Fixed height (the width will vary as required)
 +
  Add some horizontal margin between the slides
 +
  Add a bottom fading reflection for WebKit browsers
 +
*/
 +
 +
#gallery img {
 +
  float: left;
 +
  height: 300px;
 +
  margin: 0 20px;      /* Adjust the left/right margin to show greater or fewer slides at once */
 +
  -webkit-box-reflect:
 +
    below
 +
    0
 +
    -webkit-gradient(
 +
      linear,
 +
      left top,
 +
      left bottom,
 +
      color-stop(1, rgba(255, 255, 255, .5)),
 +
      color-stop(.8, rgba(255, 255, 255, 0))
 +
    );
 +
}
 +
 +
 +
/*
 +
  Left and right buttons:
 +
 +
  Position them on the left and right sides of the gallery
 +
  Stretch them to the height of the gallery
 +
  Hide them by default
 +
*/
 +
 +
#leftButton, #rightButton {
 +
  position: absolute;
 +
  z-index: 2;
 +
  top: -100px;
 +
  bottom: 0;
 +
  padding: 0;
 +
  margin: auto 0;
 +
  width: 15%;
 +
  height: 300px;        /* Image height */
 +
  border: none;
 +
  outline: none;
 +
  color: #000;
 +
  background: transparent url(images/blank.gif);
 +
  font-size: 100px;
 +
  font-family: "Courier New", courier, fixed;
 +
  opacity: 0.6;
 +
  filter: alpha(opacity=0);
 +
  -webkit-transition: opacity .5s;
 +
  -moz-transition: opacity .5s;
 +
  -o-transition: opacity .5s;
 +
  transition: opacity .5s;
 +
}
 +
 +
#leftButton {
 +
  left: 0;
 +
}
 +
 +
#rightButton {
 +
  right: 0;
 +
}
 +
 +
/* (Turn off dotted black outline on FF3) */
 +
 +
#leftButton::-moz-focus-inner, #rightButton::-moz-focus-inner {
 +
  border: none;
 +
}
 +
 +
/*
 +
  Left and right button hover states:
 +
  Fade them in to 50% opacity
 +
*/
 +
 +
#leftButton:hover, #rightButton:hover {
 +
  opacity: 1;
 +
  filter: alpha(opacity=50);
 +
  outline: none;
 +
}
 +
 +
 +
/*
 +
  Image caption:
 +
 +
  Position just under the centre image
 +
  Hide by default
 +
*/
 +
 +
#caption {
 +
  position: relative;
 +
  z-index: 2;
 +
  bottom: 130px;
 +
  width: 100%;
 +
  color: #000;
 +
  text-align: center;
 +
  font-family: "aladin", serif;
 +
  font-size: 24px;
 +
  letter-spacing: .1em;
 +
  display: none;
 +
}
 +
 +
 +
/*
 +
  Loading text:
 +
 +
  Position in the centre of the gallery container
 +
  Hide by default
 +
*/
 +
 +
#loading {
 +
  position: relative;
 +
  z-index: 1;
 +
  bottom: 50%;
 +
  width: 100%;
 +
  color: #ffc;
 +
  text-align: center;
 +
  font-family: "Georgia", serif;
 +
  font-size: 36px;
 +
  letter-spacing: .1em;
 +
  opacity: 0;
 +
  filter: alpha(opacity=0);
 +
}
 +
/*font awesome*/
/*font awesome*/
Line 478: Line 705:
@font-face {
@font-face {
   font-family: 'FontAwesome';
   font-family: 'FontAwesome';
-
  src: url('../fonts/fontawesome-webfont.eot?v=4.0.3');
+
  src: url('https://static.igem.org/mediawiki/2014/9/99/BGU14fontawesome-webfont.eot');
-
   src: url('../fonts/fontawesome-webfont.eot?#iefix&v=4.0.3') format('embedded-opentype'), url('../fonts/fontawesome-webfont.woff?v=4.0.3') format('woff'), url('../fonts/fontawesome-webfont.ttf?v=4.0.3') format('truetype'), url('../fonts/fontawesome-webfont.svg?v=4.0.3#fontawesomeregular') format('svg');
+
   src: url('https://static.igem.org/mediawiki/2014/9/99/BGU14fontawesome-webfont.eot?#iefix') format('embedded-opentype'), url('https://static.igem.org/mediawiki/2014/0/06/BGU14fontawesome-webfont.woff') format('woff'), url('https://static.igem.org/mediawiki/2014/7/72/BGU14fontawesome-webfont.ttf') format('truetype');
   font-weight: normal;
   font-weight: normal;
   font-style: normal;
   font-style: normal;
Line 1,807: Line 2,034:
   content: "\f196";
   content: "\f196";
}
}
-
 
/*style*/
/*style*/
-
@import "grid.css";
 
-
@import "font-awesome.css";
 
@import url(//fonts.googleapis.com/css?family=Dosis:400);
@import url(//fonts.googleapis.com/css?family=Dosis:400);
Line 1,829: Line 2,053:
body {
body {
position: relative;
position: relative;
-
color: #Eff5f8;
 
font: 14px/20px 'Open Sans', sans-serif;
font: 14px/20px 'Open Sans', sans-serif;
width: 80%;
width: 80%;
-
background-color: #EFF5F8;
+
background-color: #FFFFFF;
margin: auto;
margin: auto;
 +
min-width: 1079px;
 +
max-width: 1079px;
      
      
      
      
Line 1,891: Line 2,116:
padding-top: 0px;
padding-top: 0px;
margin-bottom: 0px;
margin-bottom: 0px;
 +
margin-top: 0px;
font-family: aladin;
font-family: aladin;
font-style: normal;
font-style: normal;
Line 2,035: Line 2,261:
     display: inline-block;
     display: inline-block;
     margin-top: 16px;
     margin-top: 16px;
-
    font: 24px/26px 'Dosis', sans-serif;
+
/*    font: 24px/26px 'Dosis', sans-serif;*/
     color: #3b3a3a;
     color: #3b3a3a;
}
}
Line 2,069: Line 2,295:
/*header*/
/*header*/
-
header {
+
#main_nav {
display: block;
display: block;
/*padding-top: 70px;*/
/*padding-top: 70px;*/
-
position: relative;
+
position: fixed;
 +
top:0px;
max-width: 100%;
max-width: 100%;
font-family: aladin;
font-family: aladin;
Line 2,202: Line 2,429:
margin-bottom: 0px;
margin-bottom: 0px;
display: inline-block;
display: inline-block;
-
background: url(../images/down.png) 0 0 no-repeat;
+
background: url(https://static.igem.org/mediawiki/2014/3/33/BGU14down.png) 0 0 no-repeat;
width: 82px;
width: 82px;
height: 82px;
height: 82px;
Line 2,213: Line 2,440:
     background-position: right 0;
     background-position: right 0;
}
}
 +
.right {
 +
margin-bottom: 0px;
 +
display: inline-block;
 +
background: url(https://static.igem.org/mediawiki/2014/3/33/BGU14right.png) 0 0 no-repeat;
 +
width: 35px;
 +
height: 35px;
 +
float:right;
 +
transition: 0s ease;
 +
-o-transition: 0s ease;
 +
-webkit-transition: 0s ease;
 +
    background-position: 0 bottom;
 +
}
 +
.right:hover {
 +
    background-position: 0 top;
 +
}
 +
.f_logo {
.f_logo {
Line 2,258: Line 2,501:
height: 50px;
height: 50px;
position: fixed;
position: fixed;
-
width: 93%;
+
width: 1141px;
z-index: 99999;
z-index: 99999;
left: 50%;
left: 50%;
Line 2,266: Line 2,509:
nav ul {
nav ul {
font-family: 'aladin', sans-serif;
font-family: 'aladin', sans-serif;
-
font-size: 16px;
+
font-size: 1.375em;
list-style: none;
list-style: none;
Line 2,272: Line 2,515:
   
   
nav ul li {
nav ul li {
-
display: block;
 
position: relative;
position: relative;
float: left;
float: left;
-
width: 101px;
+
top:3px;
   
   
   
   
Line 2,286: Line 2,528:
   
   
nav ul li a {
nav ul li a {
-
  display: block;
+
padding: 7px 15px 7px 15px;
-
  text-decoration: none;
+
color: #474343;
-
  padding: 7px 15px 7px 15px;
+
margin-left: 1px;
-
  background: #b4dee1;
+
height: 30px; /* Width and height of top-level nav items */
-
  color: #474343;  
+
text-align: center;
-
  margin-left: 1px;
+
display: table-cell;
-
  white-space: nowrap;
+
vertical-align: middle;
-
  height:30px; /* Width and height of top-level nav items */
+
background-color: transparent;
-
  width:90px;
+
-
  text-align:center;
+
-
  display:table-cell;
+
-
  vertical-align:middle;
+
-
 
+
-
+
}
}
   
   
Line 2,305: Line 2,541:
   
   
nav li:hover ul {
nav li:hover ul {
-
display: inline;
 
float: left;
float: left;
position: absolute;
position: absolute;
height: 30px;
height: 30px;
left: 0px;
left: 0px;
 +
width: 101px;
 +
display: block;
}
}
   
   
Line 2,315: Line 2,552:
font-size: 18px;
font-size: 18px;
position: relative;
position: relative;
-
float:left;
+
float: left;
-
width: 95px;
+
   
   
}
}
nav li:hover li  a{
nav li:hover li  a{
float: left;
float: left;
-
width: 120px;
+
width: 138px;
 +
height:32px;
border-color: #3DABCC;
border-color: #3DABCC;
border-style: dashed;
border-style: dashed;
border-radius: 0px / 6px;
border-radius: 0px / 6px;
 +
background:#b4dee1;
   
   
}
}
nav li:hover a {  
nav li:hover a {  
-
   background: #b4dee1;  
+
   background: transparent;  
   height:30px; /* Height of lower-level nav items is shorter than main level */
   height:30px; /* Height of lower-level nav items is shorter than main level */
}
}
   
   
-
nav li:hover li a:hover {
+
 
-
  background: #b4dee1;
+
-
}
+
   
   
nav ul li ul li a {
nav ul li ul li a {
-
     text-align:left; /* Top-level items are centered, but nested list items are left-aligned */
+
     text-align:left;
 +
background:#b4dee1;  /* Top-level items are centered, but nested list items are left-aligned */
}
}
   
   
/* END NAV MENU */
/* END NAV MENU */
-
header div #top_doctor {
+
#top_doctor {
height: 30%;
height: 30%;
position: fixed;
position: fixed;
Line 2,348: Line 2,585:
bottom: 0px;
bottom: 0px;
}
}
-
header div #top_doctor:hover  {
+
#top_doctor:hover  {
}
}
-
header #main_nav #rib {
+
#main_nav #rib {
width: 100%;
width: 100%;
}
}
Line 2,362: Line 2,599:
text-decoration: underline;
text-decoration: underline;
font-size: large;
font-size: large;
 +
cursor:pointer;
}
}
.startegy {
.startegy {
Line 2,373: Line 2,611:
font-size: 19pt;
font-size: 19pt;
opacity: 1;
opacity: 1;
 +
        font-family:allan;
}
}
-
header #main_nav #menu_ul {
+
#main_nav #menu_ul {
position: absolute;
position: absolute;
top: 4px;
top: 4px;
-
right: 29px;
+
width: 70%;
 +
white-space: nowrap;
 +
right: 6%;
}
}
-
header #main_nav #main_wrap {
+
#main_nav #main_wrap {
position: relative;
position: relative;
left: -50%;
left: -50%;
 +
white-space: no-wrap;
}
}
#test_wrap{
#test_wrap{
Line 2,403: Line 2,645:
}
}
section {
section {
-
margin-top: 48px;
+
margin-top: 28px;
 +
        width:1079px;
}
}
.center {
.center {
Line 2,411: Line 2,654:
    
    
}
}
 +
.col2
 +
{
 +
color: #000;
 +
margin-left: 8px;
 +
margin-right: 8px;
 +
 +
float: left;
 +
width: 500px;
 +
line-height:20px;
 +
}
 +
.col3
 +
{
 +
color: #000;
 +
margin-right: 26px;
 +
float: left;
 +
width: 320px;
 +
border-radius: 8px;
 +
background-color: #EFF5F8;
 +
padding-top: 11px;
 +
padding-right: 11px;
 +
padding-bottom: 11px;
 +
padding-left: 11px;
 +
margin-bottom: 12px;
 +
font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
 +
font-style: normal;
 +
font-weight: 400;
 +
font-size: 14pt;
 +
text-align: justify;
 +
white-space: normal;
 +
line-height:20px;
 +
}
 +
.textCont
 +
{
 +
border-radius: 8px;
 +
background-color: #EFF5F8;
 +
padding-top: 11px;
 +
padding-right: 11px;
 +
padding-bottom: 11px;
 +
padding-left: 11px;
 +
margin-bottom: 12px;
 +
font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
 +
font-style: normal;
 +
font-weight: 400;
 +
font-size: 14pt;
 +
text-align: justify;
 +
white-space: normal;
 +
line-height:20px;
 +
font-style:italic;
 +
}
 +
.textCont p {
 +
line-height:20px;
 +
}
 +
.modalDialog {
 +
position: fixed;
 +
font-family: Arial, Helvetica, sans-serif;
 +
top: 0;
 +
right: 0;
 +
bottom: 0;
 +
left: 0;
 +
background: rgba(0,0,0,0.8);
 +
z-index: 99999;
 +
opacity:0;
 +
-webkit-transition: opacity 400ms ease-in;
 +
-moz-transition: opacity 400ms ease-in;
 +
transition: opacity 400ms ease-in;
 +
pointer-events: none;
 +
}
 +
.modalDialog:target {
 +
opacity:1;
 +
pointer-events: auto;
 +
}
 +
 +
.modalDialog > div {
 +
width: 1000px;
 +
height:600px;
 +
position: relative;
 +
margin: 20px auto 0 auto;
 +
padding: 5px 20px 13px 20px;
 +
border-radius: 10px;
 +
background: #fff;
 +
/* background: -moz-linear-gradient(#fff, #999);
 +
background: -webkit-linear-gradient(#fff, #999);
 +
background: -o-linear-gradient(#fff, #999);*/
 +
}
 +
.close {
 +
background: #606061;
 +
color: #FFFFFF;
 +
line-height: 25px;
 +
position: absolute;
 +
right: -12px;
 +
text-align: center;
 +
top: -10px;
 +
width: 24px;
 +
text-decoration: none;
 +
font-weight: bold;
 +
-webkit-border-radius: 12px;
 +
-moz-border-radius: 12px;
 +
border-radius: 12px;
 +
-moz-box-shadow: 1px 1px 3px #000;
 +
-webkit-box-shadow: 1px 1px 3px #000;
 +
box-shadow: 1px 1px 3px #000;
 +
}
 +
 +
.close:hover { background: #00d9ff; }
 +
ul.check {
 +
    list-style-type: none;
 +
    padding: 0px;
 +
    margin: 0px;
 +
line-height:19px;
 +
}
 +
 +
ul.check li {
 +
    background-image: url(https://static.igem.org/mediawiki/2014/7/71/BGU14check.png);
 +
    background-repeat: no-repeat;
 +
background-size:20px;
 +
    background-position: 0px 0px;
 +
    padding-left: 14px;
 +
}
 +
.team-member {
 +
position: relative;
 +
    border 1px solid #a8a8a8;
 +
color: #000000;
 +
height: 190px;
 +
width: 400px;
 +
 +
}
 +
 +
.team-member  img {
 +
position: absolute;
 +
top: 10px;
 +
left: 10px;
 +
width: 124px;
 +
height: 126px;
 +
    }
 +
 +
.team-member  h16 {
 +
    position:absolute;
 +
font-weight:bold;
 +
    top: 15px;
 +
    left:150px;
 +
    font-size:18px;
 +
  color: #294360;
 +
    }
 +
 +
.team-member  b {
 +
    font-size:12px;
 +
  color: #294360;
 +
    }
 +
 +
.team-member  h17 {
 +
position: absolute;
 +
top: 45px;
 +
left: 145px;
 +
font-size: 14px;
 +
color: #000000;
 +
bottom: 2097251px;
 +
width: 275px;
 +
 
 +
  }
 +
 +
 +
.team-content  {
 +
    color:#19293C;
 +
 +
    }
 +
.team-content  h6 {
 +
    color:#19293C;
 +
}
 +
 +
.col4
 +
{
 +
 +
display:none;
 +
border:groove #000000;
 +
color: #000;
 +
float: left;
 +
width: 320px;
 +
border-radius: 8px;
 +
background-color: #EFF5F8;
 +
padding-top: 6px;
 +
padding-right: 6px;
 +
padding-bottom: 6px;
 +
padding-left: 6px;
 +
margin-bottom: 9px;
 +
font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
 +
font-style: normal;
 +
font-size: 12px;
 +
line-height: 16px;
 +
text-align: justify;
 +
white-space: normal;
 +
position:fixed;
 +
}
 +
.lineh ul,ol
 +
{
 +
line-height:1em;
 +
}
 +
 +
.textContNotebook
 +
{
 +
border-radius: 8px;
 +
background-image:url(https://static.igem.org/mediawiki/2014/2/21/BGU14notebook.png);
 +
background-size:1079px;
 +
 +
background-color: #EFF5F8;
 +
padding-top: 11px;
 +
padding-right: 11px;
 +
padding-bottom: 11px;
 +
padding-left: 11px;
 +
margin-bottom: 12px;
 +
font-family: Cambria, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif;
 +
font-style: normal;
 +
font-weight: 400;
 +
font-size: 14pt;
 +
text-align: justify;
 +
white-space: normal;
 +
}
 +
 +
a:visited
 +
{
 +
color:#474343;
 +
}
 +
 +
 +
a:visited:hover
 +
{
 +
color: #3da9b6;
 +
}
 +
#bar:hover
 +
{
 +
cursor:pointer;
 +
}
 +
 +
 +
.hstartegy {
 +
position: absolute;
 +
text-align: justify;
 +
float: left;
 +
left: 10px;
 +
top: 32px;
 +
z-index: 2;
 +
color: #000;
 +
font-size: 19pt;
 +
opacity: 1;
 +
font-family: allan;
 +
font-style: normal;
 +
font-weight: 700;
 +
}
 +
 +
.grid_long {
 +
width: 1080px;
 +
margin-top:6px;
 +
height: 100px;
 +
border-radius: 8px;
 +
overflow: hidden;
 +
position: relative;
 +
text-align: left;
 +
float: left;
 +
font-weight: normal;
 +
}
 +
.table1 {
 +
align-content:center;
 +
margin:0px;
 +
padding:0px;
 +
width:100%;
 +
box-shadow: 10px 10px 5px #888888;
 +
border:1px solid #000000;
 +
-moz-border-radius-bottomleft:9px;
 +
-webkit-border-bottom-left-radius:9px;
 +
border-bottom-left-radius:9px;
 +
-moz-border-radius-bottomright:9px;
 +
-webkit-border-bottom-right-radius:9px;
 +
border-bottom-right-radius:9px;
 +
-moz-border-radius-topright:9px;
 +
-webkit-border-top-right-radius:9px;
 +
border-top-right-radius:9px;
 +
-moz-border-radius-topleft:9px;
 +
-webkit-border-top-left-radius:9px;
 +
border-top-left-radius:9px;
 +
}
 +
.table1 table{
 +
width:100%;
 +
height:100%;
 +
margin:0px;padding:0px;
 +
}
 +
.table1 tr {
 +
align-content:center;
 +
font-family:allan, "Hoefler Text", "Liberation Serif", Times, "Times New Roman", serif
 +
}
 +
.prevNext{
 +
width:100px;
 +
border: thin solid; border-radius: 8px; background: #5FA6B8; font-style: normal; font-weight: 700; font-size: 24px; font-family: Allan, 'Hoefler Text', 'Liberation Serif', Times, 'Times New Roman', serif; vertical-align: middle;
 +
opacity:0.5;
 +
}
 +
 +
/*home*/
 +
 +
#home #top_doctor {
 +
display: none;
 +
}
 +
 +
#home  #main_nav
 +
{
 +
display: none;
 +
}
 +
#home_body {
 +
width: 100%;
 +
max-width: 1600px;
 +
overflow: hidden;
 +
}
 +
#home_body {
 +
width: 100%;
 +
max-width: 1600px;
 +
overflow: hidden;
 +
background-color: #EFF5F8;
 +
}
 +
.home_div{
 +
overflow:hidden;
 +
border-radius:8px;
 +
 +
 +
}
 +
 +
 +
/* entire container, keeps perspective */
 +
.flip-container {
 +
perspective: 1000;
 +
}
 +
/* flip the pane when hovered */
 +
.flip-container:hover .flipper, .flip-container.hover .flipper {
 +
transform: rotateY(180deg);
 +
}
 +
 +
.flip-container, .front, .back {
 +
/*width: 320px;
 +
height: 480px;*/
 +
border-radius:8px;
 +
overflow:hidden;
 +
}
 +
 +
/* flip speed goes here */
 +
.flipper {
 +
transition: 0.6s;
 +
transform-style: preserve-3d;
 +
 +
position: relative;
 +
}
 +
 +
/* hide back of pane during swap */
 +
.front, .back {
 +
backface-visibility: hidden;
 +
 +
position: absolute;
 +
top: 0;
 +
left: 0;
 +
}
 +
 +
/* front pane, placed above back */
 +
.front {
 +
z-index: 2;
 +
/* for firefox 31 */
 +
transform: rotateY(0deg);
 +
}
 +
 +
/* back, initially hidden pane */
 +
.back {
 +
transform: rotateY(180deg);
 +
background-color:#EFF5F8;
 +
font-family: cambria;
 +
font-size: 24px;
 +
font-style: italic;
 +
white-space:normal;
 +
}
 +
 +
.col2 ul
 +
{
 +
line-height:19.5px;
 +
}
 +
#bodyContent h3, #bodyContent h4, #bodyContent h5
 +
{
 +
margin-bottom:0px;
 +
 +
}
 +
 +
.prevNext:hover{
 +
width:100px;
 +
 +
opacity:1;
 +
cursor:pointer;
 +
}
 +
#opening:hover{
 +
opacity:1;
 +
 +
}
 +
#leftButton:hover{
 +
cursor:pointer;
 +
}
 +
#rightButton:hover{
 +
cursor:pointer;
 +
}
</style>
</style>
</html>
</html>

Latest revision as of 23:49, 17 October 2014