Skip to content

Instantly share code, notes, and snippets.

@anegg0
Created July 21, 2023 22:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anegg0/5616bce4aebe7f8dec5893b6b3d9182f to your computer and use it in GitHub Desktop.
Save anegg0/5616bce4aebe7f8dec5893b6b3d9182f to your computer and use it in GitHub Desktop.
Terminal Output
<pre><output>webpack: Compiled successfully.
webpack: Compiling...
Hash: 33d8c38093d5e8261eac
Version: webpack 3.11.0
Time: 1337ms
Asset Size Chunks Chunk Names
project.js 12.3 MB 0 [emitted] [big] project
dashboard.js 6.36 MB 1 [emitted] [big] dashboard
organize.js 5.29 MB 2 [emitted] [big] organize
proPens.js 4.92 MB 3 [emitted] [big] proPens
0.81c79b4db476a98d272f.hot-update.js 87.4 kB 0 [emitted] project
1.81c79b4db476a98d272f.hot-update.js 7.94 kB 1 [emitted] dashboard
81c79b4db476a98d272f.hot-update.json 52 bytes [emitted]
manifest.json 272 bytes [emitted]
[./app/javascript/common/components/Overlay.js] ./app/javascript/common/components/Overlay.js 2.42 kB {0} {1} [built]</output></pre>
body {
background-color: black;
background-image: radial-gradient(
rgba(0, 150, 0, 0.75), black 120%
);
height: 100vh;
margin: 0;
overflow: hidden;
padding: 2rem;
color: white;
font: 1.3rem Inconsolata, monospace;
text-shadow: 0 0 5px #C8C8C8;
&::after {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100vw;
height: 100vh;
background: repeating-linear-gradient(
0deg,
rgba(black, 0.15),
rgba(black, 0.15) 1px,
transparent 1px,
transparent 2px
);
pointer-events: none;
}
}
::selection {
background: #0080FF;
text-shadow: none;
}
pre {
margin: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment