summaryrefslogtreecommitdiff
path: root/src/styles/404.less
diff options
context:
space:
mode:
authorGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 09:48:38 +0200
committerGeorgios Andreadis <g.andreadis@student.tudelft.nl>2017-09-23 09:48:38 +0200
commit09596c3c5a6a2a44675f170106bb38746229e02a (patch)
tree763d1b710dc5f2fcab920ac6ab2c555cee4d6342 /src/styles/404.less
parent057952b0bacc6e963c74bb1bbebbcccd6174a75c (diff)
Remove old frontend
Diffstat (limited to 'src/styles/404.less')
-rw-r--r--src/styles/404.less147
1 files changed, 0 insertions, 147 deletions
diff --git a/src/styles/404.less b/src/styles/404.less
deleted file mode 100644
index 8842b621..00000000
--- a/src/styles/404.less
+++ /dev/null
@@ -1,147 +0,0 @@
-html, body {
- padding: 0;
- margin: 0;
- width: 100%;
- height: 100%;
-
- background-image: linear-gradient(135deg, #00678a, #008fbf, #00A6D6);
-}
-
-.terminal-window {
- width: 600px;
- height: 400px;
- display: block;
-
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
-
- margin: auto;
-
- -webkit-user-select: none;
- -moz-user-select: none;
- -ms-user-select: none;
- user-select: none;
- cursor: default;
-
- overflow: hidden;
-
- box-shadow: 5px 5px 20px #444444;
-}
-
-.terminal-header {
- 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;
-}
-
-.terminal-body {
- font-family: monospace;
- text-align: center;
- background-color: #333333;
- color: #eeeeee;
- padding: 10px;
-
- height: 100%;
-}
-
-.segfault {
- text-align: left;
-}
-
-.cursor {
- -webkit-animation: 1s blink step-end infinite;
- -moz-animation: 1s blink step-end infinite;
- -ms-animation: 1s blink step-end infinite;
- -o-animation: 1s blink step-end infinite;
- animation: 1s blink step-end infinite;
-}
-
-.code-block {
- white-space: pre-wrap;
-
- margin-top: 60px;
-}
-
-.sub-title {
- margin-top: 20px;
-}
-
-.home-btn {
- 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;
- -ms-transition: all 200ms;
- -o-transition: all 200ms;
- transition: all 200ms;
-}
-
-.home-btn:hover {
- background: #eeeeee;
- color: #333333;
-}
-
-.home-btn:active {
- background: #333333;
- color: #eeeeee;
-}
-
-@keyframes blink {
- from, to {
- color: #eeeeee;
- }
- 50% {
- color: #333333;
- }
-}
-
-@-moz-keyframes blink {
- from, to {
- color: #eeeeee;
- }
- 50% {
- color: #333333;
- }
-}
-
-@-webkit-keyframes blink {
- from, to {
- color: #eeeeee;
- }
- 50% {
- color: #333333;
- }
-}
-
-@-ms-keyframes blink {
- from, to {
- color: #eeeeee;
- }
- 50% {
- color: #333333;
- }
-}
-
-@-o-keyframes blink {
- from, to {
- color: #eeeeee;
- }
- 50% {
- color: #333333;
- }
-} \ No newline at end of file