Spaces:
Running
Running
File size: 1,129 Bytes
e6b949c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
body,
html {
margin: 0;
padding: 0;
overflow: hidden;
background-color: #fff;
font-family: sans-serif;
}
canvas {
width: 100vw;
height: 100vh;
}
dialog {
width: 100%;
text-align: center;
max-width: 20em;
color: white;
background-color: #000;
border: none;
position: relative;
transform: translate(-50%, -50%);
}
#progress-container {
position: absolute;
top: 50%;
left: 50%;
}
progress {
width: 100%;
height: 1em;
border: none;
background-color: #fff;
color: #eee;
}
progress::-webkit-progress-bar {
background-color: #333;
}
progress::-webkit-progress-value {
background-color: #eee;
}
progress::-moz-progress-bar {
background-color: #eee;
}
#download-button {
position: absolute;
top: 8px;
right: 8px;
background-color: #000000cc;
border: none;
padding: 6px;
margin: 0;
border-radius: 2px;
cursor: pointer;
}
#download-button:hover {
background-color: #000000ee;
}
#download-button:active {
background-color: #000000cc;
}
#download-button:focus {
outline: none;
}
|