Just a whole bunch of fixing

This commit is contained in:
2018-07-09 21:41:17 +02:00
parent 5633460b97
commit 9c7b79403e
25 changed files with 208 additions and 320 deletions

View File

@@ -1,76 +0,0 @@
/*
Created on : Feb 19, 2017, 11:21:45 AM
Author : Fornax <fornax@pixeldrain.com>
*/
/* Global Definitions */
.api_doc_details{
border-top: 1px solid;
border-bottom: 1px solid;
margin-top: 10px;
margin: 15px -8px 15px -8px;
}
.api_doc_details > summary {
padding: 2px;
font-family: monospace;
}
.api_doc_details > summary > .method {
display: inline-block;
width: 80px;
}
.api_doc_details > div {
padding: 8px;
}
table{
border-collapse: collapse;
width: 100%;
}
tr{
border-bottom: 1px #333 solid;
}
tr > td {
padding: 6px;
}
pre{
padding: 2px;
border-bottom: 1px #333 solid;
overflow-x: scroll;
}
h3{
border-bottom: 1px #777 solid;
}
/* GET requests */
.api_doc_details.request_get{
border-color: rgb(54, 54, 255);
background-color: rgba(32, 32, 255, 0.2);
}
/* POST requests */
.api_doc_details.request_post{
border-color: #00d000;
background-color: rgba(0, 255, 0, 0.05);
}
/* DELETE requests */
.api_doc_details.request_delete{
border-color: #B00000;
background-color: rgba(255, 0, 0, 0.05);
}
/* PUT requests */
.api_doc_details.request_put{
border-color: #B06000;
background-color: rgba(255, 128, 0, 0.05);
}
/* PATCH requests */
.api_doc_details.request_patch{
border-color: #6000B0;
background-color: rgba(128, 0, 255, 0.1);
}

View File

@@ -1,35 +0,0 @@
/*
Created on : Aug 27, 2015, 9:31:34 PM
Author : Fornax
*/
.text-warning{
position: relative;
width: auto;
height: auto;
background: #656762 no-repeat top center;
border: #9FCF6C ridge 4px;
margin: 10px;
font-size: 18px;
color: #ff9090;
}
.text-info{
position: relative;
width: auto;
height: auto;
background: #656762 no-repeat top center;
border: #9FCF6C ridge 4px;
margin: 10px;
}
.g-recaptcha{
overflow:hidden;
width:298px;
height:74px;
}
.g-recaptcha > div > div > iframe{
margin:-1px 0px 0px -2px;
}

View File

@@ -7,6 +7,8 @@
--highlight_border: inset 0px 0px 5px 1px var(--highlight_color), 0px 0px 1px 0px var(--highlight_color);
}
html{height: 100%;}
body{
background-color: #111;
background-repeat: repeat;
@@ -20,26 +22,9 @@ body{
color: var(--text_color);
}
html{
height: 100%;
}
/* Page layout elements */
#header{
position: relative;
width: auto;
height: auto;
margin: 0 -8px 0 -8px;
box-sizing: border-box;
overflow: hidden;
background-color: #222;
text-align: center;
z-index: 101;
border-bottom: #606060 solid 1px;
}
#header_image{
.header_image{
width: 100%;
max-width: 1000px;
margin-top: 15px;
@@ -131,6 +116,8 @@ html{
/* Common elements */
h3{border-bottom: 1px #777 solid;} /* Differentiate it a bit, else it just looks like bold text */
hr{
height: 8px;
border: none;
@@ -142,16 +129,9 @@ hr{
width: 12px; /* for vertical scrollbars */
height: 12px; /* for horizontal scrollbars */
}
::-webkit-scrollbar-track{
background: rgba(0, 0, 0, 0);
}
::-webkit-scrollbar-thumb{
/*background: rgba(0, 0, 0, 0.5);*/
background-color: #555;
}
::-webkit-scrollbar-corner{
background: transparent;
}
::-webkit-scrollbar-track {background: rgba(0, 0, 0, 0);}
::-webkit-scrollbar-thumb {background-color: #555;}
::-webkit-scrollbar-corner{background: transparent;}
a{
color: var(--highlight_color);
@@ -162,6 +142,22 @@ a:hover{
color: var(--highlight_color);
}
.form{
margin-left: auto;
margin-right: auto;
text-align: left;
max-width: 30em;
}
table:not(.form) {border-collapse: collapse; width: 100%;}
tr:not(.form) {border-bottom: 1px #333 solid;}
tr > td {padding: 6px;}
pre{
padding: 2px;
border-bottom: 1px #333 solid;
overflow-x: scroll;
}
.big_button{
height: 40px;
width: 40%;
@@ -243,9 +239,7 @@ a:hover{
/* Form fields */
.form_input {
width: 100%;
}
.form_input {width: 100%;}
/* BUTTONS */
button,
@@ -293,10 +287,7 @@ select:active{
.button_red:active {background: linear-gradient(#61152F, #821C40) !important;}
/* Dropdown list of the select tag */
option{
background-color: #404040;
color: #FFFFFF;
}
option{background-color: #404040; color: #FFFFFF;}
/* TEXT FIELDS */
textarea,

View File

@@ -1,14 +0,0 @@
/*
Created on : Jul 1, 2015, 8:02:38 PM
Author : Fornax
*/
.textarea{
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
border: none !important;
background: #202020;
}

View File

@@ -1 +0,0 @@
/* Nothing to see here */