From aba7d2e2d99a31b1443b1fd09a336479cc7fe664 Mon Sep 17 00:00:00 2001 From: LEGALISE_PIRACY Date: Fri, 26 Jan 2024 17:22:41 +0000 Subject: [PATCH] Add scratch1/scratch.css --- scratch1/scratch.css | 51 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 51 insertions(+) create mode 100644 scratch1/scratch.css diff --git a/scratch1/scratch.css b/scratch1/scratch.css new file mode 100644 index 00000000..f7f7267a --- /dev/null +++ b/scratch1/scratch.css @@ -0,0 +1,51 @@ +body { + background-color: #eae6d1; + font-family: sans-serif; +} +canvas { + position: fixed; + background: #000; + cursor: default; +} +canvas.pixelated { + image-rendering: -moz-crisp-edges; + image-rendering: -webkit-optimize-contrast; + image-rendering: pixelated; + -ms-interpolation-mode: nearest-neighbor; +} +div#sqHeader { + position: fixed; + top: 0; + left: 0; + right: 0; + padding: 10px; + border-bottom: 6px double gray; +} +div#sqFooter { + position: fixed; + left: 0; + right: 0; + bottom: 0; + padding: 10px; + border-top: 6px double gray; +} +div#sqSpinner { + position: fixed; + margin: auto; top: 0; left: 0; bottom: 0; right: 0; + width: 100px; + height: 100px; + border-radius: 50px; + background: rgba(0, 0, 0, 0.3); + box-shadow: 0 0 5px 5px #F90; + display: none; + transform: rotate(30deg); +} +div#sqSpinner > div { + position: absolute; + top: 45px; + left: 5px; + width: 90px; + height: 10px; + border-radius: 5px; + box-shadow: 0 0 5px 5px #F90; +} \ No newline at end of file