Mooshie commited on
Commit
2bb3f31
1 Parent(s): ee2b1a2

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -5
README.md CHANGED
@@ -43,17 +43,19 @@ thumbnail: "https://huggingface.co/Mooshie/hairflap/blob/main/girl1.png"
43
  max-width: 100%;
44
  cursor: pointer;
45
  text-align: center;
 
46
  }
47
- .image-container:hover img {
48
- transition: transform 0.4s ease-in-out;
49
- transform: scale(1.1);
50
- }
51
- img {
52
  width: 100%;
53
  max-width: 100%;
54
  height: auto;
55
  display: block;
56
  border-radius: 10px;
 
 
 
 
 
57
  }
58
  </style>
59
  </head>
 
43
  max-width: 100%;
44
  cursor: pointer;
45
  text-align: center;
46
+ overflow: hidden;
47
  }
48
+ .image-container img {
 
 
 
 
49
  width: 100%;
50
  max-width: 100%;
51
  height: auto;
52
  display: block;
53
  border-radius: 10px;
54
+ transform: scale(1);
55
+ transition: transform 0.4s ease-in-out;
56
+ }
57
+ .image-container:hover img {
58
+ transform: scale(1.1);
59
  }
60
  </style>
61
  </head>