thisisnotras

testing

Jul 28th, 2020
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. <style>
  2.  
  3. body{
  4. margin-left: 100px;
  5. margin-top:100px;}
  6.  
  7. #thebox{
  8. position: absolute;
  9. left: 200px;
  10. top: 200px;
  11. height: 100px;
  12. width: 100px;
  13. background: black;
  14. -webkit-transition: all 1s;
  15. transition: all 1s;
  16. box-sizing: border-box;}
  17.  
  18. #div1:target ~ #thebox{
  19. background: red;}
  20.  
  21. #div2:target ~ #thebox{
  22. background: brown;}
  23.  
  24. #div3:target ~ #thebox{
  25. background: green;}
  26.  
  27.  
  28. #theswitch:checked ~ #div1:target ~ #thebox{
  29. background: pink;
  30. border: 5px solid red;}
  31.  
  32. #theswitch:checked ~ #div2:target ~ #thebox{
  33. background: blue;
  34. border: 5px solid brown;}
  35.  
  36. #theswitch:checked ~ #div3:target ~ #thebox{
  37. background: yellow;
  38. border: 5px solid green;}
  39.  
  40.  
  41.  
  42. </style>
  43.  
  44. <input type="checkbox" id="theswitch">
  45. <div id="div1"></div>
  46. <div id="div2"></div>
  47. <div id="div3"></div>
  48.  
  49. <div id="thebox">
  50. </div>
  51.  
  52. <label for="theswitch">
  53. Hey.</label><br><br>
  54.  
  55. <a href="#div1">Div 1.</a><br><br>
  56. <a href="#div2">Div 2.</a><br><br>
  57. <a href="#div3">Div 3.</a><br><br>
Advertisement
Add Comment
Please, Sign In to add comment