123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- a:link {
- color:hotpink;
- }
- a:visited {
- color:#b705ff;
- }
- a:hover {
- color:#f500ff;
- }
- body{
- background-color:#121212;
- color:#0A889B;
- margin:1em auto;
- max-width:40em;
- padding:0 .62em;
- font:1.2em/1.62em sans-serif;
- }
- h1,h2,h3 {
- line-height:1.2em;
- color:#0068ff;
- }
- #canvas {
- position: fixed;
- background-color:#000;
- top: 0;
- left: 0;
- bottom: 0;
- right: 0;
- width: 100%;
- height: 100%;
- }
- #parse {
- left: 10px;
- position: fixed;
- top:10px;
- background-color: #b705ff;
- opacity:0.4;
- border: none;
- color: white;
- padding: 10px 26px;
- text-align: center;
- text-decoration: none;
- display: inline-block;
- font-size: 16px;
- transition: 0.3s
- }
- #parse:hover {
- opacity:1.0;
- }
- #pause {
- left: 10px;
- position: fixed;
- top: 70px;
- background-color: #b705ff;
- opacity:0.4;
- border: none;
- color: white;
- padding: 10px 26px;
- text-align: center;
- text-decoration: none;
- display: inline-block;
- font-size: 16px;
- transition: 0.3s
- }
- #pause:hover {
- opacity:1.0;
- }
- #zone {
- margin: auto;
- width: 50%;
- height: 200px;
- top: 0; left: 0; bottom: 0; right: 0;
- text-align: center;
- position: absolute;
- z-index: 3;
- color: grey;
- }
- #drop:hover {
- color: white;
- transition: 0.2s;
- }
- #drop {
- transition: 0.2s;
- border: 3px dotted grey;
- padding: 40px;
- }
|