style.css 778 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. a:link {
  2. color:hotpink;
  3. }
  4. a:visited {
  5. color:#b705ff;
  6. }
  7. a:hover {
  8. color:#f500ff;
  9. }
  10. body{
  11. background-color:#121212;
  12. color:#0A889B;
  13. margin:1em auto;
  14. max-width:40em;
  15. padding:0 .62em;
  16. font:1.2em/1.62em sans-serif;
  17. }
  18. h1,h2,h3 {
  19. line-height:1.2em;
  20. color:#0068ff;
  21. }
  22. #canvas {
  23. position: fixed;
  24. background-color:#000;
  25. top: 0;
  26. left: 0;
  27. bottom: 0;
  28. right: 0;
  29. width: 100%;
  30. height: 100%;
  31. }
  32. #pause {
  33. left: 10px;
  34. z-index: -1;
  35. position: fixed;
  36. top:10px;
  37. background-color: #b705ff;
  38. opacity:0.4;
  39. border: none;
  40. color: white;
  41. padding: 10px 26px;
  42. text-align: center;
  43. text-decoration: none;
  44. display: inline-block;
  45. font-size: 16px;
  46. transition: 0.3s
  47. }
  48. #pause:hover {
  49. opacity:1.0;
  50. }