Guest User

Untitled

a guest
Nov 18th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. #block-fpevents {
  2. position: relative;
  3. transition: all 300ms;
  4. height: 250px;
  5. width: 100%;
  6. background-color: #F0F0F1;
  7. background: #F0F0F1 url('/sites/montgomerywealth.us1.advisor.ws/files/styles/max_2600x2600/public/images/events_1.jpg?itok=2RZlFOcc');
  8. background-size: cover;
  9. background-repeat: no-repeat;
  10. background-position: right top;
  11.  
  12. &:after {
  13. transition: all 300ms ease;
  14. z-index: 5;
  15. position: absolute;
  16. content:"";
  17. background-color: #000;
  18. top:0;
  19. left:0;
  20. width:100%;
  21. height:100%;
  22. opacity:0;
  23. }
  24.  
  25. // Show opacity on hover
  26. &:hover:after {
  27. opacity: 0.4;
  28. }
  29.  
  30. .event-text {
  31. z-index: 10;
  32. position: absolute;
  33. transition: all 300ms;
  34. top: 50%;
  35. left: 50%;
  36. transform: translate(-50%, -50%);
  37. border: 4px solid #fff;
  38. padding: 20px;
  39. h2 {
  40. color: #fff;
  41. }
  42. }
  43.  
  44. @media screen and (min-width: 40em) {
  45. height: 350px;
  46. }
  47. @media screen and (min-width: 64em) {
  48. height: 450px;
  49. .event-text {
  50. left: 20%;
  51. }
  52. }
  53. }
Add Comment
Please, Sign In to add comment