| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361 |
- body {
- background-color: #dee3e7;
- color: black;
- text-align: center;
- font-family: sans-serif;
- padding: 0;
- margin: 0;
- }
- fieldset {
- padding: 0;
- }
- fieldset#rootGroup {
- display: grid;
- grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
- grid-template-rows: auto auto auto auto;
- grid-gap: 1em;
- text-align: center;
- border: 0;
- }
- fieldset#switcher {
- border: 0;
- text-align: right;
- margin-bottom: 1em;
- }
- fieldset#switcher button {
- padding: 1em;
- color: black;
- display: table-cell;
- text-align: center;
- border: 1px solid #999;
- background-color: white;
- box-shadow: 0 0 6px 0 #aaa;
- user-select: none;
- background-color: white;
- cursor: pointer;
- }
- fieldset#switcher button:first-child{
- border-radius: 1em 0em 0em 1em;
- }
- fieldset#switcher button:last-child{
- border-radius: 0 1em 1em 0;
- }
- table {
- background-color: white;
- border-collapse: collapse;
- width: 100%;
- box-shadow: 0 0 10px 0 #444;
- }
- th,
- td {
- border: 1px solid #efefef;
- text-align: left;
- padding: 0.6em;
- }
- th:first-child {
- width: 5%;
- }
- tr:hover td {
- background-color: beige;
- }
- button.activeSection {
- font-weight: bold;
- }
- legend {
- padding-top: 1em;
- }
- span[role="icon"] {
- display: block;
- font-size: 3em;
- vertical-align: middle;
- }
- form span[role="icon"],
- tr.logRow span[role="icon"] {
- display: inline-block;
- padding-right: 0.2em;
- }
- .error {
- background-color: salmon;
- padding: 1em;
- }
- .title.temporaryStatusMessage {
- color: gray;
- }
- div.entity {
- background-color: white;
- box-shadow: 0 0 10px 0 #444;
- display: grid;
- grid-column: auto / span 2;
- grid-row: auto / span 2;
- grid-template-rows: auto min-content;
- grid-template-columns: minmax(min-content, auto);
- }
- h2 {
- font-size: 1em;
- display: inline-block;
- }
- div.entity h2 {
- grid-column: 1 / span all;
- }
- button,
- input[type="submit"] {
- padding: 1em;
- color: black;
- text-align: center;
- border: 1px solid #999;
- background-color: white;
- box-shadow: 0 0 6px 0 #aaa;
- user-select: none;
- }
- button:hover,
- input[type="submit"]:hover {
- box-shadow: 0 0 10px 0 #666;
- cursor: pointer;
- }
- button:focus,
- input[type="submit"]:focus {
- outline: 1px solid black;
- }
- button:disabled,
- input[type="submit"]:disabled {
- color: gray;
- background-color: #333;
- cursor: not-allowed;
- }
- fieldset#switcher {
- border: 0;
- text-align: right;
- margin-bottom: 1em;
- }
- fieldset#switcher button:first-child {
- border-radius: 1em 0 0 1em;
- }
- fieldset#switcher button:last-child {
- border-radius: 0 1em 1em 0;
- }
- .actionFailed {
- animation: kfActionFailed 1s;
- }
- @keyframes kfActionFailed {
- 0% { background-color: black; }
- 20% { background-color: red; }
- 0% { background-color: inherit; }
- }
- .actionSuccess {
- animation: kfActionSuccess 1s;
- }
- @keyframes kfActionSuccess {
- 0% { background-color: black; }
- 20% { background-color: limegreen; }
- 0% { background-color: inherit; }
- }
- .actionNonZeroExit {
- animation: kfActionNonZeroExit 1s;
- }
- @keyframes kfActionNonZeroExit {
- 0% { background-color: black; }
- 20% { background-color: orange; }
- 0% { background-color: inherit; }
- }
- .actionTimeout {
- animation: kfActionTimeout 1s;
- }
- @keyframes kfActionTimeout {
- 0% { background-color: black; }
- 20% { background-color: cyan; }
- 0% { background-color: inherit; }
- }
- footer,
- footer a {
- color: black;
- }
- img.logo {
- width: 1em;
- height: 1em;
- vertical-align: middle;
- }
- @media (max-width: 320px) {
- fieldset {
- grid-template-columns: auto;
- grid-gap: 0;
- padding: 0;
- }
- }
- main {
- padding: 1em;
- }
- summary {
- cursor: pointer;
- }
- details {
- display: inline-block;
- }
- details[open] {
- margin-top: 1em;
- display: block;
- }
- form.actionArguments {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- padding: 1em;
- box-shadow: 0 0 6px 0 #aaa;
- background-color: #dee3e7;
- }
- form div.wrapper {
- border-radius: 1em;
- box-shadow: 0 0 10px 0 #444;
- background-color: white;
- border: 1px solid #999;
- text-align: left;
- padding: 1em;
- }
- label {
- width: 20%;
- text-align: right;
- display: inline-block;
- padding-right: 1em;
- }
- input {
- padding: 0.6em;
- }
- input:invalid {
- outline: 2px solid red;
- }
- form .wrapper span.icon {
- display: inline-block;
- vertical-align: middle;
- }
- form input[type="submit"]:first-child {
- margin-right: 1em;
- }
- button[name=cancel]:hover {
- background-color: salmon;
- }
- input[name=start]:hover {
- background-color: #aceaac;
- }
- form div.buttons {
- text-align: right;
- }
- pre {
- border: 1px solid gray;
- padding: 1em;
- min-height: 1em;
- }
- td.exitCode {
- text-align: center;
- }
- input.invalid {
- background-color: salmon;
- }
- #availableVersion {
- background-color: #aceaac;
- padding: 0.2em;
- border-radius: 1em;
- }
- @media (prefers-color-scheme: dark) {
- body {
- background-color: #333;
- color: white;
- }
- form.actionArguments {
- background-color: #333;
- }
- form div.wrapper {
- background-color: #222;
- }
- button,
- input[type="submit"] {
- border: 1px solid #666;
- background-color: #222;
- box-shadow: 0 0 6px 0 #444;
- color: white;
- }
- button:disabled {
- background-color: black;
- }
- table,
- td,
- th {
- border: 1px solid gray;
- }
- td,
- tr {
- background-color: #222;
- color: white;
- }
- tr:hover td {
- background-color: #666;
- }
- footer,
- footer a {
- color: gray;
- }
- }
|