aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.css
diff options
context:
space:
mode:
authorNeil Kollack <nkollack@gmail.com>2022-03-20 01:14:53 -0500
committerNeil Kollack <nkollack@gmail.com>2022-03-20 01:14:53 -0500
commit67f3eab7aba135fe669589927954d34c2fe30c3e (patch)
treea722457789171dfa5ac4185f277c3211ee0f3a6e /src/index.css
parenta8cbe2ec227e2244457d12d99fb3cdb0fc599f37 (diff)
feat: garbage terminal
Diffstat (limited to 'src/index.css')
-rw-r--r--src/index.css38
1 files changed, 38 insertions, 0 deletions
diff --git a/src/index.css b/src/index.css
new file mode 100644
index 0000000..9ed8698
--- /dev/null
+++ b/src/index.css
@@ -0,0 +1,38 @@
+body {
+ margin: 0;
+ font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
+ 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
+ sans-serif;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
+}
+
+code {
+ font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
+ monospace;
+}
+
+.terminalContainer {
+ height: 75%;
+ width: 60%;
+ position: fixed;
+ z-index: 1;
+ top: 10%;
+ left: 8%;
+ color: #FFFFFF;
+ background-color: #111;
+ overflow-x: hidden;
+ transition: 0.5s;
+ padding-top: 60px;
+ background-color: #333333;
+ border: 2px solid #BB86fc;
+ padding: 20px;
+ margin: 20px;
+ border-radius: 5px;
+ overflow: auto;
+}
+
+#xterm {
+ height: 100%;
+ width: 100%;
+} \ No newline at end of file