Advertisement
trunks470

Test Web Site 1 Style Sheet.css (Formatting)

Jan 28th, 2015
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.48 KB | None | 0 0
  1. @charset "utf-8";
  2. body {
  3.   background: url('images/Background Official.jpg') no-repeat center center fixed;
  4.   -webkit-background-size: 100% 100%;
  5.   -o-background-size: 100% 100%;
  6.   background-size: 100% 100%;
  7.   overflow-x: hidden;
  8.   margin: 5px;
  9.   margin-top: 5px;
  10.   margin-bottom: 0px;
  11. }
  12.  
  13. .box {
  14.   height: 300px;
  15.   width: 300px;
  16.   background-color: white;
  17.   opacity: 0.7;
  18.   display: inline-block;
  19.   border-top-left-radius: 10px;
  20.   border-top-right-radius: 10px;
  21.   border-bottom-left-radius: 10px;
  22.   border-bottom-right-radius: 10px;
  23. }
  24.  
  25. .link-spanner {
  26.   position:absolute;
  27.   width:100%;
  28.   height:100%;
  29.   top:0;
  30.   left: 0;
  31.   z-index: 1;
  32. }
  33.  
  34. .m-scene .scene_element {
  35.   -webkit-animation-duration: 0.25s;
  36.   animation-duration: 0.25s;
  37.   -webkit-transition-timing-function: ease-in;
  38.   transition-timing-function: ease-in;
  39.   -webkit-animation-fill-mode: both;
  40.   animation-fill-mode: both;
  41. }
  42.  
  43. .m-scene .scene_element--fadeInLeft {
  44.   -webkit-animation-name: fadeInLeft;
  45.   animation-name: fadeInLeft;
  46. }
  47.  
  48. .m-scene .scene_element--fadeInUp {
  49.   -webkit-animation-name: fadeInUp;
  50.   animation-name: fadeInUp;
  51. }
  52.  
  53. .m-scene .scene_element--fadeInDown {
  54.   -webkit-animation-name: fadeInDown;
  55.   animation-name: fadeInDown;
  56. }
  57.  
  58. .m-scene .scene_element--fadeInRight {
  59.   -webkit-animation-name: fadeInRight;
  60.   animation-name: fadeInRight;
  61. }
  62.  
  63. .m-scene.is-exiting .scene_element {
  64.     -webkit-animation-direction: alternate-reverse;
  65.     animation-direction: alternate-reverse;
  66. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement