Advertisement
Guest User

Untitled

a guest
Dec 8th, 2016
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. .portfolio-grid .project {
  2. overflow: hidden;
  3. }
  4.  
  5. .portfolio-grid .project:hover:after {
  6. content: '';
  7. width: 100%;
  8. height: 999px;
  9. position: absolute;
  10. top: 0;
  11. background: rgba( 0, 0, 0, 0.5 );
  12. z-index: 1;
  13. }
  14.  
  15. .portfolio-grid .project-header {
  16. display: block;
  17. background: none;
  18. z-index: 2;
  19. display: flex;
  20. flex-direction: column;
  21. justify-content: center;
  22. transform: translateY(30px);
  23. -webkit-transition: 0.3s ease-in-out;
  24. -moz-transition: 0.3s ease-in-out;
  25. -o-transition: 0.3s ease-in-out;
  26. transition: 0.3s ease-in-out;
  27. }
  28.  
  29. .portfolio-grid .project:hover .project-header {
  30. transform: translateY(0);
  31. }
  32.  
  33. .portfolio-grid .project-title a,
  34. .portfolio-grid .project-categories a {
  35. color: #fff;
  36. text-align: center;
  37. }
  38.  
  39. .portfolio-grid .project-title a,
  40. .portfolio-grid .project-categories a {
  41. color: #fff;
  42. }
  43.  
  44. .portfolio-grid .project-title a,
  45. .portfolio-grid .project-categories {
  46. text-align: center;
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement