Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html>
- <head>
- <link rel="preconnect" href="https://fonts.gstatic.com">
- <link href="https://fonts.googleapis.com/css2?family=Balsamiq+Sans&display=swap" rel="stylesheet">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <style>
- ::-moz-selection { /* Code for Firefox */
- color: #000;
- background: #56708D;
- }
- ::selection {
- color: #000;
- background: #56708D;
- }
- body {
- position: relative;
- width: 100%;
- }
- .links {
- text-shadow: -1px 0 #fff, 0 1px #fff, 1px 0 #fff, 0 -1px #fff, 0 0;
- font-size:275%;
- font-weight:bold;
- color: #8accd6;
- font-family: 'arial', cursive;
- text-decoration:none;
- }
- .flip-card {
- background-color: transparent;
- width: 100%;
- height: 300px;
- perspective: 600px;
- border-radius:9px;
- }
- .flip-card-inner {
- position: relative;
- width: 100%;
- height: 100%;
- text-align: center;
- transition: transform 0.6s;
- transform-style: preserve-3d;
- box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
- border: #000 double;
- border-radius:9px;
- }
- .flip-card:hover .flip-card-inner {
- transform: rotateY(180deg);
- }
- .flip-card-front, .flip-card-back {
- position: absolute;
- width: 100%;
- height: 100%;
- -webkit-backface-visibility: hidden;
- backface-visibility: hidden;
- border-radius:9px;
- }
- .flip-card-front {
- background-color: #bbb;
- color: black;
- }
- .flip-card-back {
- background-color: #ffe36b;
- color: white;
- transform: rotateY(180deg);
- border-radius:6px;
- }
- </style>
- </head>
- <body>
- <div class="flip-card">
- <div class="flip-card-inner">
- <div class="flip-card-front">
- <img src="https://dl.dropbox.com/s/nevqkcuzdlruf17/Photo%20May%2022%2C%2012%2022%2040%20PM.jpg?" alt="Avatar" style="width:100%;height:100%;border-radius:6px;">
- </div>
- <div class="flip-card-back">
- <div class="links"> <br></br>
- <a href="#i">about</a></div>
- <div class="links"> <a href="#ii">loves</a></div>
- <div class="links"> <a href="#iii">rules</a></div>
- <div class="links">
- <a
- href="https://mobile.twitter.com/ketsu_neko?lang=en">©</a></div>
- </div>
- </div>
- </div>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement