mirror of
https://gitlab.com/MrFry/qmining-page
synced 2026-04-28 03:07:36 +02:00
494 lines
7.3 KiB
CSS
494 lines
7.3 KiB
CSS
:root {
|
|
--text-color: #f2cb05;
|
|
--primary-color: #f2cb05;
|
|
--bright-color: #f2f2f2;
|
|
--background-color: #222426;
|
|
--hoover-color: #393939;
|
|
--dark-color: #191919;
|
|
}
|
|
|
|
@import url('https://fonts.googleapis.com/css2?family=Kameron&family=Overpass+Mono:wght@300;400&display=swap');
|
|
|
|
body {
|
|
font-family: 'Kameron', serif;
|
|
font-family: 'Overpass Mono', monospace;
|
|
color: #999999;
|
|
cursor: default;
|
|
}
|
|
|
|
img {
|
|
margin: 10px;
|
|
border: 2px solid white;
|
|
}
|
|
|
|
li {
|
|
padding: 2px 0px;
|
|
}
|
|
|
|
a {
|
|
color: white;
|
|
}
|
|
|
|
a:hover {
|
|
color: #c1c1c1;
|
|
}
|
|
|
|
textarea {
|
|
color: var(--text-color);
|
|
background-color: var(--background-color);
|
|
box-sizing: border-box;
|
|
height: 140px;
|
|
width: 100%;
|
|
border: 1px solid #666;
|
|
border-radius: 3px;
|
|
}
|
|
|
|
input {
|
|
color: var(--text-color);
|
|
background-color: var(--background-color);
|
|
border: 0px solid #444;
|
|
width: 80%;
|
|
font-family: inherit;
|
|
width: 98%;
|
|
padding: 4px;
|
|
}
|
|
|
|
input:focus {
|
|
border: 0px solid #444;
|
|
}
|
|
|
|
.link {
|
|
margin: 20px;
|
|
font-size: 20px;
|
|
}
|
|
|
|
.sidebarLink {
|
|
color: var(--text-color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.sidebar {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0;
|
|
padding: 0;
|
|
width: 200px;
|
|
background-color: #222426;
|
|
position: fixed;
|
|
height: 100%;
|
|
overflow: auto;
|
|
}
|
|
|
|
.content {
|
|
margin-left: 200px;
|
|
padding: 1px 15px;
|
|
}
|
|
|
|
.menuicon div {
|
|
height: 5px;
|
|
background-color: var(--bright-color);
|
|
margin: 0px 0;
|
|
display: none;
|
|
width: 30px;
|
|
}
|
|
|
|
.sidebarheader {
|
|
font-size: 40px;
|
|
color: var(--bright-color);
|
|
display: flex;
|
|
text-align: center;
|
|
}
|
|
|
|
.headercontainer {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
flex-wrap: nowrap;
|
|
position: relative;
|
|
overflow: hidden;
|
|
padding-top: 15px;
|
|
padding-bottom: 17px;
|
|
padding-right: 2px;
|
|
padding-left: 2px;
|
|
}
|
|
|
|
@media screen and (max-width: 700px) {
|
|
.sidebar {
|
|
width: 100%;
|
|
height: auto;
|
|
position: relative;
|
|
}
|
|
|
|
.sidebar a {
|
|
float: left;
|
|
}
|
|
|
|
div.content {
|
|
padding: 0px;
|
|
margin-left: 0;
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 700px) {
|
|
.menuicon div {
|
|
display: block;
|
|
margin: 6px 0;
|
|
}
|
|
|
|
.sidebar a {
|
|
text-align: center;
|
|
float: none;
|
|
}
|
|
|
|
.menuicon {
|
|
display: inline;
|
|
}
|
|
|
|
.sidebaritemsconainer {
|
|
display: inline;
|
|
}
|
|
|
|
.sidebarheader {
|
|
position: absolute;
|
|
left: 50%;
|
|
top: 50%;
|
|
padding-top: 20px;
|
|
transform: translateX(-50%) translateY(-50%);
|
|
}
|
|
|
|
.codecontainer {
|
|
margin-left: 0px;
|
|
margin-right: 0px;
|
|
}
|
|
|
|
.sitedescription {
|
|
width: 100%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
.rtfmImage {
|
|
text-align: center;
|
|
display: flex;
|
|
justify-content: center;
|
|
border: 2px solid white;
|
|
width: 100%;
|
|
}
|
|
|
|
.manualUsage {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.endofpage {
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.questionContainer {
|
|
margin: 6px;
|
|
padding: 10px;
|
|
}
|
|
|
|
.questionContainer:hover {
|
|
background-color: #141414;
|
|
color: var(--text-color);
|
|
}
|
|
|
|
.question {
|
|
word-wrap: break-word;
|
|
font-weight: bold;
|
|
font-size: 17px;
|
|
color: gainsboro;
|
|
}
|
|
|
|
.answer {
|
|
word-wrap: break-word;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.data {
|
|
word-wrap: break-word;
|
|
font-size: 13px;
|
|
color: #a1a1a1;
|
|
}
|
|
|
|
.loadingindicator {
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
color: #fff;
|
|
font-size: 30px;
|
|
}
|
|
|
|
.link {
|
|
margin: 10px;
|
|
}
|
|
|
|
.subjectSelector {
|
|
overflow: auto;
|
|
height: auto;
|
|
max-height: 250px;
|
|
margin: 10px;
|
|
padding: 5px;
|
|
padding-right: 10px;
|
|
padding-left: 8px;
|
|
background-color: #141414;
|
|
}
|
|
|
|
.subjItem {
|
|
font-size: 18px;
|
|
padding: 3px;
|
|
padding-top: 5px;
|
|
margin-top: 4px;
|
|
cursor: pointer;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.activeSubjItem {
|
|
background-color: var(--text-color);
|
|
color: black;
|
|
}
|
|
|
|
.subjItem:hover:not(.activeSubjItem) {
|
|
background-color: #555;
|
|
color: white;
|
|
}
|
|
|
|
.rtfmImage {
|
|
text-align: center;
|
|
justify-content: center;
|
|
margin: 0px 10px;
|
|
}
|
|
|
|
.warning {
|
|
color: red;
|
|
font-weight: 100;
|
|
font-size: 17.5px;
|
|
}
|
|
|
|
#manualWarn {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.manual_img {
|
|
padding: 20px 2px;
|
|
max-width: 90%;
|
|
}
|
|
|
|
.subtitle {
|
|
color: var(--text-color);
|
|
font-size: 23px;
|
|
text-align: center;
|
|
font-weight: 100;
|
|
margin: 0px;
|
|
padding-top: 8px;
|
|
}
|
|
|
|
.pageHeader {
|
|
background-color: var(--text-color);
|
|
max-width: 100%;
|
|
color: black;
|
|
margin: 5px 0px 0px 0px;
|
|
}
|
|
|
|
.pageHeader > h1 {
|
|
padding-top: 6px;
|
|
letter-spacing: 7px;
|
|
text-align: center;
|
|
margin: 0px;
|
|
}
|
|
|
|
.manualUsage {
|
|
margin-top: 5px;
|
|
display: flex;
|
|
}
|
|
|
|
.manualBody {
|
|
text-align: justify;
|
|
}
|
|
|
|
.userStatus {
|
|
display: flex;
|
|
margin-top: auto;
|
|
margin-bottom: 20px;
|
|
background-color: #373737;
|
|
align-items: center;
|
|
text-align: center;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.msgs {
|
|
font-size: 15px;
|
|
}
|
|
|
|
.uid {
|
|
font-size: 14px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.logout {
|
|
padding: 6px;
|
|
margin-right: 7px;
|
|
cursor: pointer;
|
|
font-size: 15.5px;
|
|
}
|
|
|
|
.logout:hover {
|
|
color: #fff;
|
|
}
|
|
|
|
.msgs :first-child {
|
|
font-size: 27px;
|
|
margin-left: 4px;
|
|
}
|
|
|
|
.msgs > div {
|
|
padding: 2px 6px;
|
|
font-size: 13.5px;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.actions > span {
|
|
margin: 2px 2px;
|
|
padding: 0px 10px;
|
|
border: 1px solid #444;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
user-select: none;
|
|
}
|
|
|
|
.actions > span:hover {
|
|
background-color: var(--hoover-color);
|
|
}
|
|
|
|
.buttonContainer {
|
|
display: flex;
|
|
align-items: stretch;
|
|
justify-content: center;
|
|
margin: 10px 0px;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
@media screen and (max-width: 700px) {
|
|
.buttonContainer {
|
|
flex-flow: column;
|
|
align-items: center;
|
|
}
|
|
}
|
|
|
|
.buttonContainer > * {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 200px;
|
|
height: 30px;
|
|
|
|
font-size: 15px;
|
|
padding: 5px 15px;
|
|
margin: 8px 5px 2px 5px;
|
|
|
|
color: var(--text-color);
|
|
border: none;
|
|
background-color: var(--hoover-color);
|
|
font-weight: bold;
|
|
cursor: pointer;
|
|
text-align: center;
|
|
user-select: none;
|
|
text-decoration: none;
|
|
text-shadow: 1px 1px 8px black;
|
|
transition: width 0.5s, height 0.5s, ease-in 0.5s;
|
|
}
|
|
|
|
@media screen and (max-width: 700px) {
|
|
.buttonContainer > * {
|
|
padding: 5px 0px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.buttonContainer > *:hover {
|
|
text-shadow: 2px 2px 8px black;
|
|
transition: width 0.5s, height 0.5s, ease-out 0.5s;
|
|
background-color: var(--text-color);
|
|
color: black;
|
|
}
|
|
|
|
.buttonContainer > .activeButton {
|
|
background-color: var(--text-color);
|
|
color: black;
|
|
}
|
|
|
|
select {
|
|
cursor: pointer;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
height: 30px;
|
|
}
|
|
|
|
select:hover {
|
|
border: 1px solid #f2cb05;
|
|
}
|
|
|
|
.checkbContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
margin: 10px 0px 0px 0px;
|
|
}
|
|
|
|
.checkbContainer > input {
|
|
width: 5%;
|
|
background-color: #9c9c98;
|
|
color: azure;
|
|
font-family: inherit;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.selectContainer {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.selectContainer > select,
|
|
.selectContainer > input {
|
|
width: 20%;
|
|
border-radius: 5px;
|
|
border: 1.5px solid white;
|
|
background-color: #9c9c98;
|
|
color: azure;
|
|
font-family: inherit;
|
|
margin: 6px 0px;
|
|
}
|
|
|
|
.selectContainer > select:hover,
|
|
.selectContainer > select:active {
|
|
border: 2px solid var(--text-color);
|
|
}
|
|
|
|
.selectContainer > div {
|
|
padding: 0px 5px;
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.description {
|
|
padding-top: 1px;
|
|
padding-bottom: 5px;
|
|
font-size: inherit;
|
|
color: inherit;
|
|
text-align: center;
|
|
margin: 10px;
|
|
}
|
|
|
|
.resultContainer {
|
|
color: gainsboro;
|
|
font-size: 18px;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-top: 8px;
|
|
}
|