aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/css/index.css
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/css/index.css')
-rw-r--r--frontend/src/css/index.css150
1 files changed, 0 insertions, 150 deletions
diff --git a/frontend/src/css/index.css b/frontend/src/css/index.css
deleted file mode 100644
index 0340813..0000000
--- a/frontend/src/css/index.css
+++ /dev/null
@@ -1,150 +0,0 @@
-@media all and (max-width: 1000px) {
- .lt-content-column {
- padding: 0 calc(5vw + 1em) 0 5vw !important;
- }
-}
-
-form {
- width: 100%;
-}
-
-textarea, input[type=text], input[type=password], .Dropdown-root {
- width: 100%;
- font-family: 'JetBrains Mono', monospace;
- font-size: 0.8em;
- padding: calc(0.8em - 1px);
- border-radius: 3px;
- border: 1px solid #565656;
- outline: none;
- margin: 1.7em 0;
-}
-
-/* fix weird symbol height in render mode */
-.large-op {
- transform: translateY(-0.55em);
-}
-
-.small-op {
- transform: translateY(-0.1em);
-}
-
-code, pre {
- background: #00000000;
- font-family: 'JetBrains Mono', monospace;
- padding: initial;
- border-radius: 3px;
- outline: none;
-}
-
-.Dropdown-root {
- cursor: pointer;
-}
-
-.Dropdown-root:hover, .Dropdown-root.is-open {
- opacity: 1;
-}
-
-.Dropdown-root + label {
- top: 0.5em;
- opacity: 0;
-}
-
-.Dropdown-root.is-open + label, .Dropdown-root:hover + label {
- opacity: 1;
- top: -0.1em;
-}
-
-.Dropdown-placeholder {
- width: 5.5em;
-}
-
-.Dropdown-menu {
- border-top: 1px solid #111111;
- margin-top: 0.5em;
- bottom: auto;
-}
-
-.Dropdown-option {
- margin-top: 0.5em;
- transition: all 0.5s cubic-bezier(.25,.8,.25,1);
-}
-
-.Dropdown-option:hover {
- font-weight: 700;
- opacity: 0.4;
-}
-
-textarea, input[type=text], input[type=password], .Dropdown-root {
- opacity: 0.5;
- transition: opacity 0.5s cubic-bezier(.25,.8,.25,1);
-}
-
-textarea:focus, input[type=text]:focus, input[type=password]:focus {
- opacity: 1;
-}
-
-input[type=password] {
- font-weight: 700;
-}
-
-textarea {
- height: max(40vh, 100%);
- resize: vertical;
- min-height: 40vh;
-}
-
-a {
- color: #111111;
-}
-
-input[type=submit], button[type=submit] {
- font-family: 'JetBrains Mono', serif;
- font-weight: 700;
- color: #faf9f5;
- background-color: #111111;
- padding: 0.8em 2em;
- margin: 2em 0;
- outline: 0;
-}
-
-button[type=button] {
- font-family: 'JetBrains Mono', serif;
- font-weight: 700;
- width: 8em;
- padding: calc(0.8em - 1px) 1.5em;
- border-radius: 3px;
- color: #111111;
- background-color: #faf9f5;
- border: 1px solid #565656;
- outline: none;
- margin: 2em 2em;
-}
-
-
-/* fixing markdown renderer */
-.md h3 {
- font-weight: bold;
-}
-
-.md hr {
- border-top: 1px solid #000;
- border-style: solid;
-}
-
-.md code {
- background: #00000008;
- font-size: 0.8em;
-}
-
-.md pre {
- padding: 0.7em;
- background: #00000008;
-}
-
-.md pre > code {
- background: none;
-}
-
-.md table {
- width: 100%;
-} \ No newline at end of file