Advertisement
Guest User

Untitled

a guest
Jul 5th, 2015
205
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.66 KB | None | 0 0
  1. .hoofdvak
  2. {
  3. width: 100%;
  4. height: 100%;
  5. overflow: hidden;
  6. padding: 0px;
  7. text-align: center;
  8. position: relative;
  9. }
  10.  
  11. .linkerwrap
  12. {
  13. width: 47%;
  14. height: 100%;
  15. display: inline-block;
  16. vertical-align: middle;
  17. position: relative;
  18. overflow: hidden;
  19. }
  20.  
  21. .rechterwrap
  22. {
  23. width: 47%;
  24. height: 100%;
  25. display: inline-block;
  26. vertical-align: middle;
  27. position: relative;
  28. overflow: hidden;
  29. }
  30.  
  31. .inhoudlinks
  32. {
  33. border-radius: 50px 10px 10px 50px;
  34. border: 2px solid #FFFFFF;
  35. background-color: #BEBEBE;
  36. opacity: 0.4;
  37. padding: 10px;
  38. width: 40%;
  39. height: 95%;
  40. transition: all 1s;
  41. float: right;
  42. overflow: hidden;
  43. }
  44. .inhoudlinks:hover
  45. {
  46. opacity: 1.0;
  47. width: 80%;
  48. }
  49.  
  50. .tekstlinks
  51. {
  52. height: 100%;
  53. width: 350px;
  54. float: left;
  55. }
  56.  
  57. .inhoudlinklinks
  58. {
  59. position: absolute;
  60. padding-left: 48%;
  61. padding-top: 17%;
  62. }
  63.  
  64. img.inhoudlinklinks
  65. {
  66. width:60%;
  67. opacity: 0.5;
  68. filter: grayscale(100%);
  69. -webkit-filter: grayscale(100%); /* For Webkit browsers */
  70. filter: gray; /* For IE 6 - 9 */
  71. -webkit-transition: all .6s ease; /* Transition for Webkit browsers */
  72. }
  73. img.inhoudlinklinks:hover
  74. {
  75. filter: grayscale(0%);
  76. opacity:1;
  77. -webkit-filter: grayscale(0%);
  78. filter: none;
  79. }
  80.  
  81. .inhoudrechts
  82. {
  83. border-radius: 10px 50px 50px 10px;
  84. border: 2px solid #FFFFFF;
  85. background-color: #BEBEBE;
  86. opacity: 0.4;
  87. padding: 10px;
  88. width: 40%;
  89. height: 95%;
  90. transition: all 1s;
  91. float: left;
  92. overflow: hidden;
  93. }
  94. .inhoudrechts:hover
  95. {
  96. opacity: 1.0;
  97. width: 80%;
  98. }
  99.  
  100. .tekstrechts
  101. {
  102. height: 100%;
  103. width: 350px;
  104. float: right;
  105. }
  106.  
  107. .inhoudlinkrechts
  108. {
  109. position: absolute;
  110. padding-top: 17%;
  111. padding-right: 48%;
  112.  
  113. }
  114.  
  115. img.inhoudlinkrechts
  116. {
  117. width:60%;
  118. opacity: 0.5;
  119. filter: grayscale(100%);
  120. -webkit-filter: grayscale(100%); /* For Webkit browsers */
  121. filter: gray; /* For IE 6 - 9 */
  122. -webkit-transition: all .6s ease; /* Transition for Webkit browsers */
  123. }
  124. img.inhoudlinkrechts:hover
  125. {
  126. filter: grayscale(0%);
  127. opacity:1;
  128. -webkit-filter: grayscale(0%);
  129. filter: none;
  130. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement