Difference between revisions of "Team:SDU-Denmark/css/content"

Line 19: Line 19:
 
   background-color: rgba(153, 172, 168, 0.3);
 
   background-color: rgba(153, 172, 168, 0.3);
 
   padding-top:1px;
 
   padding-top:1px;
 +
}
 +
 +
 +
#presentationGradient {
 +
    height: 100px;
 +
    background: rgba(153, 172, 168, 0.3); /* For browsers that do not support gradients */   
 +
    background: -webkit-linear-gradient(0deg, rgba(153, 172, 168, 0.8), rgba(153, 172, 168, 0.3)); /* For Safari 5.1 to 6.0 */
 +
    background: -o-linear-gradient(0deg, rgba(153, 172, 168, 0.8), rgba(153, 172, 168, 0.3)); /* For Opera 11.1 to 12.0 */
 +
    background: -moz-linear-gradient(0deg, rgba(153, 172, 168, 0.8), rgba(153, 172, 168, 0.3)); /* For Firefox 3.6 to 15 */
 +
    background: linear-gradient(0deg, rgba(153, 172, 168, 0.8), rgba(153, 172, 168, 0.3)); /* Standard syntax (must be last) */
 
}
 
}

Revision as of 12:20, 2 September 2017

  1. homePage {
 width: 100%;
 background-color: rgba(118, 146, 94, 0.3);
 height:100vh;
 text-align: center;

}


  1. abstract {
 width:800px;
 padding-top:200px;
 display: inline-block;

}


  1. presentationContent {
 background-color: rgba(153, 172, 168, 0.3);
 padding-top:1px;

}


  1. presentationGradient {
   height: 100px;
   background: rgba(153, 172, 168, 0.3); /* For browsers that do not support gradients */    
   background: -webkit-linear-gradient(0deg, rgba(153, 172, 168, 0.8), rgba(153, 172, 168, 0.3)); /* For Safari 5.1 to 6.0 */
   background: -o-linear-gradient(0deg, rgba(153, 172, 168, 0.8), rgba(153, 172, 168, 0.3)); /* For Opera 11.1 to 12.0 */
   background: -moz-linear-gradient(0deg, rgba(153, 172, 168, 0.8), rgba(153, 172, 168, 0.3)); /* For Firefox 3.6 to 15 */
   background: linear-gradient(0deg, rgba(153, 172, 168, 0.8), rgba(153, 172, 168, 0.3)); /* Standard syntax (must be last) */

}