style.css 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  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. #parse {
  33. left: 10px;
  34. position: fixed;
  35. top:10px;
  36. background-color: #b705ff;
  37. opacity:0.4;
  38. border: none;
  39. color: white;
  40. padding: 10px 26px;
  41. text-align: center;
  42. text-decoration: none;
  43. display: inline-block;
  44. font-size: 16px;
  45. transition: 0.3s
  46. }
  47. #parse:hover {
  48. opacity:1.0;
  49. }
  50. #pause {
  51. left: 10px;
  52. position: fixed;
  53. top: 70px;
  54. background-color: #b705ff;
  55. opacity:0.4;
  56. border: none;
  57. color: white;
  58. padding: 10px 26px;
  59. text-align: center;
  60. text-decoration: none;
  61. display: inline-block;
  62. font-size: 16px;
  63. transition: 0.3s
  64. }
  65. #pause:hover {
  66. opacity:1.0;
  67. }
  68. #zone {
  69. margin: auto;
  70. width: 50%;
  71. height: 200px;
  72. top: 0; left: 0; bottom: 0; right: 0;
  73. text-align: center;
  74. position: absolute;
  75. z-index: 3;
  76. color: grey;
  77. }
  78. #drop:hover {
  79. color: white;
  80. transition: 0.2s;
  81. }
  82. #drop {
  83. transition: 0.2s;
  84. border: 3px dotted grey;
  85. padding: 40px;
  86. }