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

223 lines
3.3 KiB
CSS
Raw Normal View History

2022-01-05 13:42:24 +01:00
body
{
font-family: monospace, monospace;
font-size: 15px;
2024-04-27 11:26:19 +02:00
background-color: #fdfdfd;
2024-06-23 16:59:51 +02:00
color:#091411;
word-wrap: break-word;
line-height: 1.1;
2022-01-05 13:42:24 +01:00
}
2024-07-08 21:07:00 +02:00
img {
width: 100%;
height: 100%;
}
#mainworkflow
{
width: 40em;
margin:0 auto;
}
#distribusiverse {
margin-bottom: 11em;
}
2022-03-28 18:33:48 +02:00
#distribusi-index {
padding-left: 1em;
}
2024-06-14 23:44:59 +02:00
.description > textarea {
width: 100%;
height: 10em;
resize: none;
}
textarea#description {
width: 100%;
height: 20em;
resize: none;
}
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 .distribusi input{
2022-01-05 15:10:18 +01:00
border: none;
2024-06-23 16:59:51 +02:00
background: #9de457;
2022-01-05 15:10:18 +01:00
text-decoration: none;
2022-03-06 23:40:25 +01:00
margin: 0.2em;
2022-01-05 15:10:18 +01:00
}
2022-03-23 21:30:59 +01:00
div#buttons .distribusi input:hover{
2024-06-29 15:19:02 +02:00
background: #091411;
2024-06-23 16:59:51 +02:00
color: #6df2cc;
2022-03-23 21:30:59 +01:00
}
fieldset.required {
border: none;
}
fieldset.required > ul {
padding-left: 0px;
}
fieldset.required > ul > li{
list-style-type: none;
}
2024-06-23 16:59:51 +02:00
2022-03-25 12:29:02 +01:00
fieldset.tagfield > input {
width: 100%;
max-width: 100%;
}
2022-03-27 12:46:08 +02:00
input {
2022-01-05 13:42:24 +01:00
border: none;
2024-06-23 16:59:51 +02:00
background: #9de457;
2022-01-05 13:42:24 +01:00
text-decoration: none;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
2022-03-06 23:40:25 +01:00
margin: 0.2em;
2022-01-05 13:42:24 +01:00
}
input:hover {
2024-06-29 15:19:02 +02:00
background: #091411;
2024-06-23 16:59:51 +02:00
color: #6df2cc;
2024-06-23 17:22:00 +02:00
cursor: pointer;
2022-01-05 13:42:24 +01:00
}
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 {
font-size: 110%;
color: #F92020;
}
#delete {
color: black;
background-color: #F92020;
}
2024-06-23 16:59:51 +02:00
#update, #describe {
color: black;
background-color: #62b264;
}
/* STOLEN GOODS */
#fancyboi::before {
content: "$ ";
}
2022-03-23 21:30:59 +01:00
@media (prefers-reduced-motion: no-preference) {
@keyframes flash {
50% { opacity: 0; }
}
@keyframes reveal {
from { width: 2em; } /* Width of ::before */
to { width: 55%; }
}
#fancyboi {
font-size: 24px;
width: 55%;
padding: 0.5em;
overflow: hidden;
white-space: nowrap;
animation: reveal 2s linear;
text-overflow: "█";
2024-06-23 16:59:51 +02:00
background-color: #9de457;
margin: auto;
}
#fancyboi::after {
content: "█";
animation: flash 0.5s step-end infinite;
}
}
div.maincontent{
width: 55%;
2024-06-23 16:59:51 +02:00
border: 3px #9de457;
margin-top: 0.5em;
margin: auto;
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;
}
2022-03-08 23:48:44 +01:00
.searched {
background: #fff600 !important;
color: black !important;
2022-03-08 23:28:33 +01:00
}
2022-03-25 13:52:01 +01:00
.tooltip {
position: relative;
display: inline-block;
border-bottom: 1px dotted black;
}
.tooltip .tooltiptext {
visibility: hidden;
width: 120px;
background-color: black;
color: #fff;
text-align: center;
padding: 5px 0;
position: absolute;
z-index: 1;
2022-03-25 13:52:01 +01:00
bottom: 100%;
left: 50%;
margin-left: -60px;
opacity: 0;
transition: opacity 2s;
}
.tooltip:hover .tooltiptext {
visibility: visible;
2022-03-25 13:52:01 +01:00
opacity: 1;
}
.code-example {
width: 100%;
color: black;
padding: 1em;
box-sizing: border-box;
2024-06-23 16:59:51 +02:00
background: #9de457;
outline: none;
font-family: Courier, sans-serif;
font-size: 16px;
}
/*
Project colors so far.
light
2024-06-23 16:59:51 +02:00
#9de457
medium
#d28cff
dark
2024-06-23 16:59:51 +02:00
#9de457
background dark
#2D3039
yellow important
#fff600
red: danger
ff5a5a
backgrounds
*/