Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>Details</title>
- <meta charset="utf-8"/>
- <style id="jsbin-css">
- details {
- display:block;
- width:300px;
- margin:10px 0;
- }
- summary {
- display:block;
- background:#99B92C;
- color:white;
- border-radius:5px;
- padding:5px;
- cursor:pointer;font-weight:bold;
- }
- summary::-webkit-details-marker {
- color:#FF0000;
- background:#FFFFFF;
- }
- details[open] summary::-webkit-details-marker {
- color:#0000FF;
- background:#00FFFF;
- }
- summary::-webkit-details-marker {
- display: none
- }
- </style>
- </head>
- <body>
- <details>
- <summary>How to beat the boss...spoiler alert !</summary>
- <p> Just aim to the red spots near his eyes</p>
- <p>Keep shooting at these spots until the eyes open, then hit quickly both eyes with your laser beam.</p>
- </details>
- <script id="jsbin-source-css" type="text/css">details {
- display:block;
- width:300px;
- margin:10px 0;
- }
- summary {
- display:block;
- background:#99B92C;
- color:white;
- border-radius:5px;
- padding:5px;
- cursor:pointer;font-weight:bold;
- }
- summary::-webkit-details-marker {
- color:#FF0000;
- background:#FFFFFF;
- }
- details[open] summary::-webkit-details-marker {
- color:#0000FF;
- background:#00FFFF;
- }
- summary::-webkit-details-marker {
- display: none
- }
- </script>
- </body>
- </html>
Add Comment
Please, Sign In to add comment