Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- }
- .center-cropped{
- width: 100px;
- height: 100px;
- background-position: center center;
- background-repeat: no-repeat;
- background-size: cover;
- display: inline-block;
- }
- .panel{
- position: relative;
- top: 0;
- left: 0;
- width: 100px;
- height: 100px;
- -webkit-transition: all 0.2s ease;
- -moz-transition: all 0.2s ease;
- -o-transition: all 0.2s ease;
- transition: all 0.2s ease;
- background-color: rgb(255, 255, 255);
- opacity: 0;
- display: none;
- }
- .center-cropped:hover .panel{
- display: block;
- }
- .panel:hover{
- background-color: rgba(255, 255, 255, 0.3);
- opacity: 1;
- }
- .visitimg{
- position: absolute;
- top: 5px;
- left: 5px;
- width:90px;
- background-color: #008CBA;
- display: block;
- }
- .delimg{
- position: absolute;
- bottom: 5px;
- left: 5px;
- width:90px;
- background-color: #ffa500;
- display: block;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement