Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ---3 BUTTONS--- (#home & #one)
- <link rel="stylesheet" href="https://unpkg.com/xp.css">
- <div class="title-bar-controls">
- <button aria-label="Minimize"></button>
- <button aria-label="Maximize"></button>
- <a href="#home" onclick="clicksound.playclip()">
- <button aria-label="Close"></button></a>
- </div>
- <style>
- #elementID {
- position: relative;
- left: 7.5em;
- }
- @media only screen and (max-width: 600px) {
- #elementID {
- left: 4.5em;
- }
- }
- </style>
- ---1 BUTTON--- (#two, #three, & #four)
- <div class="title-bar-controls">
- <a href="#home" onclick="clicksound.playclip()"><button aria-label="Close"></button></a></div>
- <style>
- #elementID {
- position: relative;
- left: 5.5em;
- }
- </style>
- ---BLINKING TEXT---
- <style>
- h3 {
- font-family:Pixelated MS Sans Serif;
- font-size:1em;
- padding:4px;
- background: #000;
- color:#fff;
- text-align:right;
- animation: blinkingText 1.2s infinite;
- }
- a{
- color:#fff;
- text-decoration: none; }
- @keyframes blinkingText {
- 0% {
- color: #000000;
- }
- 49% {
- color: #000000;
- }
- 60% {
- color: white;
- }
- 99% {
- color: white;
- }
- 100% {
- color: #000000;
- }
- }
- </style>
- <h3>minisode Tomorrow</h3>
Advertisement
Add Comment
Please, Sign In to add comment