2024-05-13 05:08:47 -04:00
|
|
|
|
|
|
|
.form-element {
|
|
|
|
padding-top: 5px;
|
|
|
|
padding-left: 30px;
|
|
|
|
}
|
|
|
|
.form-element label{
|
|
|
|
width: 250px;
|
|
|
|
}
|
|
|
|
.form-element select{
|
|
|
|
width: 204px;
|
|
|
|
}
|
|
|
|
#links {
|
|
|
|
padding-left: 40px;
|
|
|
|
padding-top: 20px;
|
|
|
|
}
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
margin-top: 30px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#img_logo {
|
|
|
|
padding-bottom: 10px;
|
|
|
|
margin-left: 20px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#info {
|
|
|
|
padding-left: -10px;
|
|
|
|
}
|
|
|
|
#parameters {
|
|
|
|
visibility: collapse;
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
#runWorkflow {
|
|
|
|
--bs-btn-color: #fff;
|
|
|
|
--bs-btn-bg: #0d6efd;
|
|
|
|
--bs-btn-border-color: #0d6efd;
|
|
|
|
--bs-btn-hover-color: #fff;
|
|
|
|
--bs-btn-hover-bg: #0b5ed7;
|
|
|
|
--bs-btn-hover-border-color: #0a58ca;
|
|
|
|
--bs-btn-focus-shadow-rgb: 49,132,253;
|
|
|
|
--bs-btn-active-color: #fff;
|
|
|
|
--bs-btn-active-bg: #0a58ca;
|
|
|
|
--bs-btn-active-border-color: #0a53be;
|
|
|
|
--bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
|
|
|
|
--bs-btn-disabled-color: #fff;
|
|
|
|
--bs-btn-disabled-bg: #0d6efd;
|
|
|
|
--bs-btn-disabled-border-color: #0d6efd;
|
|
|
|
margin-top: 20px;
|
|
|
|
}
|
|
|
|
.container {
|
|
|
|
height: auto;
|
|
|
|
overflow: hidden;
|
|
|
|
float: inline-start;
|
|
|
|
}
|
|
|
|
|
|
|
|
.right {
|
|
|
|
width: 600px;
|
|
|
|
float: inline-end;
|
|
|
|
}
|
|
|
|
|
|
|
|
.left {
|
|
|
|
width: auto;
|
|
|
|
overflow: hidden;
|
2024-05-13 05:35:46 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* CSS */
|
|
|
|
.home {
|
|
|
|
padding: 0.6em 2em;
|
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
color: black;
|
|
|
|
background: white;
|
|
|
|
cursor: pointer;
|
|
|
|
position: relative;
|
|
|
|
z-index: 0;
|
|
|
|
user-select: none;
|
|
|
|
-webkit-user-select: none;
|
|
|
|
touch-action: manipulation;
|
|
|
|
font-size: large;
|
|
|
|
font-weight: bolder;
|
|
|
|
}
|
|
|
|
|
|
|
|
.home:before {
|
|
|
|
content: "";
|
|
|
|
background: linear-gradient(
|
|
|
|
45deg,
|
|
|
|
#ff0000,
|
|
|
|
#ff7300,
|
|
|
|
#fffb00,
|
|
|
|
#48ff00,
|
|
|
|
#00ffd5,
|
|
|
|
#002bff,
|
|
|
|
#7a00ff,
|
|
|
|
#ff00c8,
|
|
|
|
#ff0000
|
|
|
|
);
|
|
|
|
position: absolute;
|
|
|
|
top: -2px;
|
|
|
|
left: -2px;
|
|
|
|
background-size: 400%;
|
|
|
|
z-index: -1;
|
|
|
|
filter: blur(5px);
|
|
|
|
-webkit-filter: blur(5px);
|
|
|
|
width: calc(100% + 4px);
|
|
|
|
height: calc(100% + 4px);
|
|
|
|
animation: glowing-home 120s linear infinite;
|
|
|
|
transition: opacity 0.3s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes glowing-home {
|
|
|
|
0% {
|
|
|
|
background-position: 0 0;
|
|
|
|
}
|
|
|
|
50% {
|
|
|
|
background-position: 400% 0;
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
background-position: 0 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.home:after {
|
|
|
|
z-index: -1;
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
background: white;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
2024-05-13 05:08:47 -04:00
|
|
|
}
|