distribusi-verse/verse/static/css/style.css

218 lines
3.1 KiB
CSS
Raw Normal View History

2022-01-05 13:42:24 +01:00
body
{
font-family: monospace;
background-color: #272a33;
2022-01-05 13:42:24 +01:00
color:#E0B0FF;
word-wrap: break-word;
2022-01-05 13:42:24 +01:00
}
div#login{
2022-01-05 13:42:24 +01:00
width: 30%;
margin-left: auto;
margin-right: auto;
background-color:#272a33;
2022-01-05 13:42:24 +01:00
text-decoration: none;
}
div#login form {
2022-01-05 13:42:24 +01:00
width: 200px;
margin: 0 auto;
padding-left: 15%;
padding-right: 15%;
}
input[type=text], input[type=password], input[type=file] {
2022-01-05 13:42:24 +01:00
color: white;
width: 18em;
max-width: 18em;
background-color: #2D3039;
2022-01-05 13:42:24 +01:00
border: 1px solid #E0B0FF;
}
div#upload form {
padding-right: 15%;
}
.workflow{
margin-top: 1em;
padding: 0.5em;
width: 30em;
background-color:#383C4A;
text-decoration: none;
scroll-behavior: smooth;
border-style: outset;
}
.workflow input{
max-width: 20em;
}
#mainworkflow
{
width: 30em;
margin:0 auto;
}
#distribusiverse {
margin-bottom: 11em;
}
div#buttons{
2022-01-05 13:42:24 +01:00
position: fixed;
top: 0.5em;
right: 0.5em;
display:flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
div#buttons .logout input{
2022-01-05 15:10:18 +01:00
border: none;
background: #E0B0FF;
text-decoration: none;
margin: 1px;
}
div#buttons .distribusi input{
2022-01-05 15:10:18 +01:00
border: none;
background: #fff600;
text-decoration: none;
margin: 1px;
}
fieldset.required {
border: none;
}
input {
2022-01-05 13:42:24 +01:00
border: none;
background: #E0B0FF;
text-decoration: none;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
2022-01-05 13:42:24 +01:00
margin: 1px;
}
input:hover {
2022-01-05 13:42:24 +01:00
background: #60337F;
}
2022-01-07 18:09:29 +01:00
input[type="submit"]:disabled:hover,
input[type="submit"]:disabled,
input[type="submit"]:disabled:focus {
background-color: #2D3039;
color: #d28cff;
}
.error {
color: #ff5a5a;
}
.delete !important {
color: #ff5a5a;
}
2022-01-07 18:09:29 +01:00
/* unvisited link */
a:link {
2022-01-28 18:25:38 +01:00
color: #fff600;
2022-01-07 18:09:29 +01:00
}
/* visited link */
a:visited {
2022-01-28 18:25:38 +01:00
color: #d28cff;
2022-01-07 18:09:29 +01:00
}
/* mouse over link */
a:hover {
color: #60337F;
}
/* selected link */
a:active {
color: white;
}
/* STOLEN GOODS */
#fancyboi::before {
content: "$ ";
}
@media (prefers-reduced-motion: no-preference) {
@keyframes flash {
50% { opacity: 0; }
}
@keyframes reveal {
from { width: 2em; } /* Width of ::before */
to { width: 55%; }
}
#fancyboi {
width: 55%;
padding: 0.5em;
overflow: hidden;
white-space: nowrap;
animation: reveal 4s linear;
text-overflow: "█";
background-color: #2D3039;
}
#fancyboi::after {
content: "█";
animation: flash 0.5s step-end infinite;
}
}
div.maincontent{
width: 55%;
border: 3px solid #E0B0FF;
margin-top: 0.5em;
padding: 0.5em;
border-style: outset;
}
.tags{
background-color: #000;
color: #fff;
display: inline-block;
padding-left: 4px;
padding-right: 4px;
text-align: center;
margin: 1px;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
border-radius: 1px;
padding: 5px 0;
/* Position the tooltip */
position: absolute;
z-index: 1;
}
.tooltip:hover .tooltiptext {
visibility: visible;
}
/*
Project colors so far.
light
#E0B0FF
medium
#d28cff
dark
#60337F
background dark
#2D3039
yellow important
#fff600
red: danger
ff5a5a
backgrounds
*/