Guest User

Untitled

a guest
Mar 6th, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.25 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <title>Details</title>
  5. <meta charset="utf-8"/>
  6. <style id="jsbin-css">
  7. details {
  8. display:block;
  9. width:300px;
  10. margin:10px 0;
  11. }
  12. summary {
  13. display:block;
  14. background:#99B92C;
  15. color:white;
  16. border-radius:5px;
  17. padding:5px;
  18. cursor:pointer;font-weight:bold;
  19. }
  20.  
  21. summary::-webkit-details-marker {
  22. color:#FF0000;
  23. background:#FFFFFF;
  24. }
  25.  
  26. details[open] summary::-webkit-details-marker {
  27. color:#0000FF;
  28. background:#00FFFF;
  29. }
  30. summary::-webkit-details-marker {
  31. display: none
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <details>
  37. <summary>How to beat the boss...spoiler alert !</summary>
  38. <p> Just aim to the red spots near his eyes</p>
  39. <p>Keep shooting at these spots until the eyes open, then hit quickly both eyes with your laser beam.</p>
  40.  
  41. </details>
  42.  
  43.  
  44.  
  45. <script id="jsbin-source-css" type="text/css">details {
  46. display:block;
  47. width:300px;
  48. margin:10px 0;
  49. }
  50. summary {
  51. display:block;
  52. background:#99B92C;
  53. color:white;
  54. border-radius:5px;
  55. padding:5px;
  56. cursor:pointer;font-weight:bold;
  57. }
  58.  
  59. summary::-webkit-details-marker {
  60. color:#FF0000;
  61. background:#FFFFFF;
  62. }
  63.  
  64. details[open] summary::-webkit-details-marker {
  65. color:#0000FF;
  66. background:#00FFFF;
  67. }
  68. summary::-webkit-details-marker {
  69. display: none
  70. }
  71. </script>
  72. </body>
  73. </html>
Add Comment
Please, Sign In to add comment