Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- !DOCTYPE html>
- <title></title>
- <html lang="en">
- <head>
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
- <style>
- @keyframes zoomIn {
- 0% {
- transform: scale(0.8);
- opacity: 0;
- }
- 100% {
- transform: scale(1);
- opacity: 1;
- }
- }
- @keyframes pulseOrange {
- 0% {
- box-shadow: 0 0 10px 5px rgba(255, 102, 0, 0.4);
- }
- 50% {
- box-shadow: 0 0 20px 10px rgba(255, 102, 0, 0.8);
- }
- 100% {
- box-shadow: 0 0 10px 5px rgba(255, 102, 0, 0.4);
- }
- }
- .bleach-profile {
- width: 430px;
- margin: 20px auto;
- border: 3px double #FF6600;
- padding: 10px;
- background-color: rgba(0, 0, 0, 0.9);
- text-align: left;
- font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
- color: #FFFFFF;
- border-radius: 15px;
- animation: zoomIn 0.6s ease-in-out;
- position: relative;
- box-shadow: 0 0 15px 5px rgba(255, 102, 0, 0.4);
- overflow: hidden;
- }
- .bleach-title {
- font-size: 24px;
- letter-spacing: 2px;
- text-transform: uppercase;
- text-align: center;
- padding: 10px;
- background: linear-gradient(to right, #FF6600, #FF9933);
- border-radius: 10px;
- margin-bottom: 10px;
- }
- .stripe-container {
- width: 100%;
- margin: 0 auto 10px auto;
- }
- .bleach-stripe {
- height: 6px;
- margin: 2px 0;
- transition: filter 0.3s ease-in-out;
- border-radius: 0;
- }
- .bleach-stripe:hover {
- filter: brightness(1.2);
- }
- .stripe-white { background-color: #FFFFFF; }
- .stripe-pink { background-color: #FF0066; }
- .stripe-blue { background-color: #0066FF; }
- .image-container {
- position: relative;
- width: 100%;
- max-width: 400px;
- margin: 0 auto;
- perspective: 800px;
- animation: zoomIn 0.6s ease-in-out;
- }
- .playby-image {
- width: 100%;
- border: 3px solid #FF6600;
- border-radius: 15px;
- transform-origin: center;
- transition: transform 0.6s ease-in-out, box-shadow 0.6s ease-in-out;
- position: relative;
- z-index: 1;
- box-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
- }
- .tilt-zone {
- position: absolute;
- width: 33.3%;
- height: 33.3%;
- background-color: transparent;
- z-index: 2;
- }
- .top-left { top: 0; left: 0; }
- .top-middle { top: 0; left: 33.3%; }
- .top-right { top: 0; left: 66.6%; }
- .mid-left { top: 33.3%; left: 0; }
- .mid-center { top: 33.3%; left: 33.3%; }
- .mid-right { top: 33.3%; left: 66.6%; }
- .bottom-left { top: 66.6%; left: 0; }
- .bottom-middle { top: 66.6%; left: 33.3%; }
- .bottom-right { top: 66.6%; left: 66.6%; }
- .top-left:hover ~ .playby-image {
- transform: rotateX(10deg) rotateY(-10deg) scale(1.05);
- }
- .top-middle:hover ~ .playby-image {
- transform: rotateX(10deg) rotateY(0deg) scale(1.05);
- }
- .top-right:hover ~ .playby-image {
- transform: rotateX(10deg) rotateY(10deg) scale(1.05);
- }
- .mid-left:hover ~ .playby-image {
- transform: rotateX(0deg) rotateY(-10deg) scale(1.05);
- }
- .mid-center:hover ~ .playby-image {
- transform: rotateX(0deg) rotateY(0deg) scale(1.07);
- }
- .mid-right:hover ~ .playby-image {
- transform: rotateX(0deg) rotateY(10deg) scale(1.05);
- }
- .bottom-left:hover ~ .playby-image {
- transform: rotateX(-10deg) rotateY(-10deg) scale(1.05);
- }
- .bottom-middle:hover ~ .playby-image {
- transform: rotateX(-10deg) rotateY(0deg) scale(1.05);
- }
- .bottom-right:hover ~ .playby-image {
- transform: rotateX(-10deg) rotateY(10deg) scale(1.05);
- }
- .tilt-zone:hover ~ .playby-image {
- box-shadow: 0 0 15px 10px rgba(255, 102, 0, 0.7);
- }
- .quote-text {
- font-size: 14px;
- font-style: italic;
- color: #FFCC99;
- text-align: center;
- margin: 10px 0;
- }
- hr.custom-bleach-rule {
- border: none;
- border-top: 2px solid #FF6600;
- margin: 15px 0;
- }
- .overview-section {
- margin-top: 10px;
- }
- .section-header {
- font-size: 18px;
- font-weight: bold;
- border-bottom: 2px solid #FF6600;
- margin-bottom: 10px;
- text-align: center;
- text-transform: uppercase;
- letter-spacing: 1px;
- color: #FF6600;
- }
- .section-content {
- font-size: 14px;
- line-height: 1.6;
- text-align: justify;
- padding: 10px;
- background-color: #1C1C1C;
- border: 2px solid #FF6600;
- border-radius: 10px;
- box-shadow: 0 0 10px rgba(255, 102, 0, 0.2);
- color: #EAEAEA;
- animation: pulseOrange 1.5s infinite ease-in-out;
- }
- html, body {
- background: #000000;
- margin: 0;
- padding: 0;
- scrollbar-face-color: #FF6600;
- scrollbar-track-color: #1C1C1C;
- scrollbar-shadow-color: #FF9933;
- scrollbar-darkshadow-color: #000000;
- scrollbar-3dlight-color: #FF9933;
- scrollbar-highlight-color: #FF6600;
- scrollbar-arrow-color: #FFFFFF;
- filter: progid:DXImageTransform.Microsoft.Glow(color=#FF6600, strength=5);
- -ms-filter: progid:DXImageTransform.Microsoft.Glow(color=#FF6600, strength=5);
- }
- </style>
- </head>
- <body>
- <div class="bleach-profile">
- <div class="bleach-title">[CHARACTER NAME]</div>
- <div class="stripe-container">
- <div class="bleach-stripe stripe-white"></div>
- <div class="bleach-stripe stripe-pink"></div>
- <div class="bleach-stripe stripe-blue"></div>
- </div>
- <center>
- <div class="image-container">
- <div class="tilt-zone top-left"></div>
- <div class="tilt-zone top-middle"></div>
- <div class="tilt-zone top-right"></div>
- <div class="tilt-zone mid-left"></div>
- <div class="tilt-zone mid-center"></div>
- <div class="tilt-zone mid-right"></div>
- <div class="tilt-zone bottom-left"></div>
- <div class="tilt-zone bottom-middle"></div>
- <div class="tilt-zone bottom-right"></div>
- <img src="[IMAGE URL HERE]" class="playby-image">
- </div>
- </center>
- <div class="quote-text"><i>"[QUOTE]"</i></div>
- <hr class="custom-bleach-rule">
- <div class="overview-section">
- <div class="section-header">Overview</div>
- <div class="section-content">
- [OVERVIEW, CHARACTER DESCRIPTION]
- </div>
- </div>
- </div>
- </body>
- </html>
- <embed src="[SONG URL HERE]" width="0" height="0" autoplay="1" loop="1">
Advertisement
Add Comment
Please, Sign In to add comment