Guest User

Untitled

a guest
Nov 23rd, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.84 KB | None | 0 0
  1. .title {
  2.     background-color: #1a1a1a;
  3.     color: #727272;
  4.     height: 32px;
  5.     line-height: 32px;
  6.     padding-left: 8px;
  7.     width: 129px;
  8.     font-size: 7pt;
  9.     font-family: Arial;
  10. }
  11.  
  12. .title:hover {
  13. position:absolute;
  14.     bottom:0;
  15.     left:0;
  16.     right:0;
  17. }
  18.  
  19. .categorie {
  20.     background-color: #333333;
  21.     color: #aeaeae;
  22.     height: 32px;
  23.     margin-left: 129px;
  24.     margin-top: -32px;
  25.     padding-left: 13px;
  26.     width: 74px;
  27.     font-size: 7pt;
  28.     font-family: Arial;
  29. }
  30.  
  31. .project {
  32.     margin-top: 32px;
  33.     float: left;
  34.     margin-left: 30px;
  35. }
  36.  
  37. .project img {
  38.     filter: grayscale(100%);
  39.     -webkit-filter: grayscale(100%);
  40.     transition: filter 600ms ease;
  41.     -webkit-transition: -webfilter 600ms ease;    
  42. }
  43.  
  44. .project img:hover {
  45.     filter: grayscale(0);
  46.     -webkit-filter: grayscale(0);
  47. }
Add Comment
Please, Sign In to add comment