Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <style>
- @font-face {
- src: url(https://dl.dropbox.com/s/sp80a2vopsaa164/SnackerComic_PerosnalUseOnly.ttf);
- font-family: snacker;
- }
- .flip-card {
- background-color: transparent;
- width: 100px;
- height: 100px;
- perspective: 1000px;
- }
- .flip-card-inner {
- position: relative;
- width: 100%;
- height: 100%;
- text-align: center;
- transition: transform 0.6s;
- transform-style: preserve-3d;
- }
- .flip-card:hover .flip-card-inner {
- transform: rotateX(180deg);
- }
- .flip-card-front, .flip-card-back {
- position: absolute;
- width: 100%;
- height: 100%;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- -webkit-mask-image: url(https://i.imgur.com/bIX4M8u.png);
- -webkit-mask-size: 100%;
- -webkit-mask-repeat: no-repeat;
- -webkit-mask-position: center;
- }
- .flip-card-front {
- background-color: transparent;
- background: radial-gradient(circle, rgba(255,255,255,1) 34%, rgba(189,210,246,1) 100%);
- }
- .flip-card-back {
- background-color: transparent;
- background: radial-gradient(circle, rgba(255,255,255,1) 34%, rgba(189,210,246,1) 100%);
- color: black;
- font-family: snacker;
- font-size: 15px;
- link-style: plain;
- text-decoration: none;
- transform: rotateX(180deg);
- }
- </style>
- </head>
- <body>
- <div class="flip-card">
- <div class="flip-card-inner">
- <div class="flip-card-front">
- <img src="https://cdn.discordapp.com/attachments/735737732604625007/989044616089186354/65E254A6-9C32-4CA6-831D-17C1C6B817E7.jpg" style="width:100px;height:100px; opacity: 0;">
- </div>
- <div class="flip-card-back">
- <br></br>
- <p><a href="#one" style="link-style:plain; text-decoration: none;">about</a><p>
- <p><a href="#two" style="link-style:plain; text-decoration: none;">rules</a></p>
- <p><a href="#three" style="link-style:plain; text-decoration: none;">love</a></p>
- </div>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement