summaryrefslogtreecommitdiff
path: root/frontend/src/components/not-found
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/components/not-found')
-rw-r--r--frontend/src/components/not-found/BlinkingCursor.js8
-rw-r--r--frontend/src/components/not-found/BlinkingCursor.sass48
-rw-r--r--frontend/src/components/not-found/CodeBlock.js54
-rw-r--r--frontend/src/components/not-found/CodeBlock.sass4
-rw-r--r--frontend/src/components/not-found/TerminalWindow.js50
-rw-r--r--frontend/src/components/not-found/TerminalWindow.sass94
6 files changed, 129 insertions, 129 deletions
diff --git a/frontend/src/components/not-found/BlinkingCursor.js b/frontend/src/components/not-found/BlinkingCursor.js
index eea89e7b..bc2d2366 100644
--- a/frontend/src/components/not-found/BlinkingCursor.js
+++ b/frontend/src/components/not-found/BlinkingCursor.js
@@ -1,6 +1,6 @@
-import React from "react";
-import "./BlinkingCursor.css";
+import React from 'react'
+import './BlinkingCursor.css'
-const BlinkingCursor = () => <span className="blinking-cursor">_</span>;
+const BlinkingCursor = () => <span className="blinking-cursor">_</span>
-export default BlinkingCursor;
+export default BlinkingCursor
diff --git a/frontend/src/components/not-found/BlinkingCursor.sass b/frontend/src/components/not-found/BlinkingCursor.sass
index 6be1476d..ad91df85 100644
--- a/frontend/src/components/not-found/BlinkingCursor.sass
+++ b/frontend/src/components/not-found/BlinkingCursor.sass
@@ -1,35 +1,35 @@
.blinking-cursor
- -webkit-animation: 1s blink step-end infinite
- -moz-animation: 1s blink step-end infinite
- -o-animation: 1s blink step-end infinite
- animation: 1s blink step-end infinite
+ -webkit-animation: 1s blink step-end infinite
+ -moz-animation: 1s blink step-end infinite
+ -o-animation: 1s blink step-end infinite
+ animation: 1s blink step-end infinite
@keyframes blink
- from, to
- color: #eeeeee
- 50%
- color: #333333
+ from, to
+ color: #eeeeee
+ 50%
+ color: #333333
@-moz-keyframes blink
- from, to
- color: #eeeeee
- 50%
- color: #333333
+ from, to
+ color: #eeeeee
+ 50%
+ color: #333333
@-webkit-keyframes blink
- from, to
- color: #eeeeee
- 50%
- color: #333333
+ from, to
+ color: #eeeeee
+ 50%
+ color: #333333
@-ms-keyframes blink
- from, to
- color: #eeeeee
- 50%
- color: #333333
+ from, to
+ color: #eeeeee
+ 50%
+ color: #333333
@-o-keyframes blink
- from, to
- color: #eeeeee
- 50%
- color: #333333
+ from, to
+ color: #eeeeee
+ 50%
+ color: #333333
diff --git a/frontend/src/components/not-found/CodeBlock.js b/frontend/src/components/not-found/CodeBlock.js
index 46dc4402..9e9cd29c 100644
--- a/frontend/src/components/not-found/CodeBlock.js
+++ b/frontend/src/components/not-found/CodeBlock.js
@@ -1,34 +1,34 @@
-import React from "react";
-import "./CodeBlock.css";
+import React from 'react'
+import './CodeBlock.css'
const CodeBlock = () => {
- const textBlock =
- " oo oooo oo <br/>" +
- " oo oo oo oo <br/>" +
- " oo oo oo oo <br/>" +
- " oooooo oo oo oooooo <br/>" +
- " oo oo oo oo <br/>" +
- " oo oooo oo <br/>";
- const charList = textBlock.split("");
+ const textBlock =
+ ' oo oooo oo <br/>' +
+ ' oo oo oo oo <br/>' +
+ ' oo oo oo oo <br/>' +
+ ' oooooo oo oo oooooo <br/>' +
+ ' oo oo oo oo <br/>' +
+ ' oo oooo oo <br/>'
+ const charList = textBlock.split('')
- // Binary representation of the string "OpenDC!" ;)
- const binaryString =
- "01001111011100000110010101101110010001000100001100100001";
+ // Binary representation of the string "OpenDC!" ;)
+ const binaryString =
+ '01001111011100000110010101101110010001000100001100100001'
- let binaryIndex = 0;
- for (let i = 0; i < charList.length; i++) {
- if (charList[i] === "o") {
- charList[i] = binaryString[binaryIndex];
- binaryIndex++;
+ let binaryIndex = 0
+ for (let i = 0; i < charList.length; i++) {
+ if (charList[i] === 'o') {
+ charList[i] = binaryString[binaryIndex]
+ binaryIndex++
+ }
}
- }
- return (
- <div
- className="code-block"
- dangerouslySetInnerHTML={{ __html: textBlock }}
- />
- );
-};
+ return (
+ <div
+ className="code-block"
+ dangerouslySetInnerHTML={{ __html: textBlock }}
+ />
+ )
+}
-export default CodeBlock;
+export default CodeBlock
diff --git a/frontend/src/components/not-found/CodeBlock.sass b/frontend/src/components/not-found/CodeBlock.sass
index 51a3d3d0..e452f917 100644
--- a/frontend/src/components/not-found/CodeBlock.sass
+++ b/frontend/src/components/not-found/CodeBlock.sass
@@ -1,3 +1,3 @@
.code-block
- white-space: pre-wrap
- margin-top: 60px
+ white-space: pre-wrap
+ margin-top: 60px
diff --git a/frontend/src/components/not-found/TerminalWindow.js b/frontend/src/components/not-found/TerminalWindow.js
index c6b8b78b..b629d14c 100644
--- a/frontend/src/components/not-found/TerminalWindow.js
+++ b/frontend/src/components/not-found/TerminalWindow.js
@@ -1,29 +1,29 @@
-import React from "react";
-import { Link } from "react-router-dom";
-import BlinkingCursor from "./BlinkingCursor";
-import CodeBlock from "./CodeBlock";
-import "./TerminalWindow.css";
+import React from 'react'
+import { Link } from 'react-router-dom'
+import BlinkingCursor from './BlinkingCursor'
+import CodeBlock from './CodeBlock'
+import './TerminalWindow.css'
const TerminalWindow = () => (
- <div className="terminal-window">
- <div className="terminal-header">Terminal -- bash</div>
- <div className="terminal-body">
- <div className="segfault">
- $ status<br />
- opendc[4264]: segfault at 0000051497be459d1 err 12 in libopendc.9.0.4<br
- />
- opendc[4269]: segfault at 000004234855fc2db err 3 in libopendc.9.0.4<br />
- opendc[4270]: STDERR Page does not exist<br />
- </div>
- <CodeBlock />
- <div className="sub-title">
- Got lost?<BlinkingCursor />
- </div>
- <Link to="/" className="home-btn">
- <span className="fa fa-home" /> GET ME BACK TO OPENDC
- </Link>
+ <div className="terminal-window">
+ <div className="terminal-header">Terminal -- bash</div>
+ <div className="terminal-body">
+ <div className="segfault">
+ $ status<br/>
+ opendc[4264]: segfault at 0000051497be459d1 err 12 in libopendc.9.0.4<br
+ />
+ opendc[4269]: segfault at 000004234855fc2db err 3 in libopendc.9.0.4<br/>
+ opendc[4270]: STDERR Page does not exist<br/>
+ </div>
+ <CodeBlock/>
+ <div className="sub-title">
+ Got lost?<BlinkingCursor/>
+ </div>
+ <Link to="/" className="home-btn">
+ <span className="fa fa-home"/> GET ME BACK TO OPENDC
+ </Link>
+ </div>
</div>
- </div>
-);
+)
-export default TerminalWindow;
+export default TerminalWindow
diff --git a/frontend/src/components/not-found/TerminalWindow.sass b/frontend/src/components/not-found/TerminalWindow.sass
index 4f51a77f..7f05335a 100644
--- a/frontend/src/components/not-found/TerminalWindow.sass
+++ b/frontend/src/components/not-found/TerminalWindow.sass
@@ -1,70 +1,70 @@
.terminal-window
- width: 600px
- height: 400px
- display: block
+ width: 600px
+ height: 400px
+ display: block
- position: absolute
- top: 0
- bottom: 0
- left: 0
- right: 0
+ position: absolute
+ top: 0
+ bottom: 0
+ left: 0
+ right: 0
- margin: auto
+ margin: auto
- -webkit-user-select: none
- -moz-user-select: none
- -ms-user-select: none
- user-select: none
- cursor: default
+ -webkit-user-select: none
+ -moz-user-select: none
+ -ms-user-select: none
+ user-select: none
+ cursor: default
- overflow: hidden
+ overflow: hidden
- box-shadow: 5px 5px 20px #444444
+ box-shadow: 5px 5px 20px #444444
.terminal-header
- font-family: monospace
- background: #cccccc
- color: #444444
- height: 30px
- line-height: 30px
- padding-left: 10px
+ font-family: monospace
+ background: #cccccc
+ color: #444444
+ height: 30px
+ line-height: 30px
+ padding-left: 10px
- border-top-left-radius: 7px
- border-top-right-radius: 7px
+ border-top-left-radius: 7px
+ border-top-right-radius: 7px
.terminal-body
- font-family: monospace
- text-align: center
- background-color: #333333
- color: #eeeeee
- padding: 10px
+ font-family: monospace
+ text-align: center
+ background-color: #333333
+ color: #eeeeee
+ padding: 10px
- height: 100%
+ height: 100%
.segfault
- text-align: left
+ text-align: left
.sub-title
- margin-top: 20px
+ margin-top: 20px
.home-btn
- margin-top: 10px
- padding: 5px
- display: inline-block
- border: 1px solid #eeeeee
- color: #eeeeee
- text-decoration: none
- cursor: pointer
+ margin-top: 10px
+ padding: 5px
+ display: inline-block
+ border: 1px solid #eeeeee
+ color: #eeeeee
+ text-decoration: none
+ cursor: pointer
- -webkit-transition: all 200ms
- -moz-transition: all 200ms
- -o-transition: all 200ms
- transition: all 200ms
+ -webkit-transition: all 200ms
+ -moz-transition: all 200ms
+ -o-transition: all 200ms
+ transition: all 200ms
.home-btn:hover
- background: #eeeeee
- color: #333333
+ background: #eeeeee
+ color: #333333
.home-btn:active
- background: #333333
- color: #eeeeee
+ background: #333333
+ color: #eeeeee