aboutsummaryrefslogtreecommitdiffstats
path: root/web/command/html/style.css
diff options
context:
space:
mode:
authorLeonardo Bishop <me@leonardobishop.net>2025-07-17 21:52:26 +0100
committerLeonardo Bishop <me@leonardobishop.net>2025-07-17 21:52:26 +0100
commit4b58544300847e5faf19be5baa4eb177a86b2b0f (patch)
tree60c43bfe7ec7c1cd46a12db73946aad03ebff01f /web/command/html/style.css
parentd6a028feb7e7c3657f846889a1c0edf9f22e8dd2 (diff)
Add automatic index
Diffstat (limited to 'web/command/html/style.css')
-rw-r--r--web/command/html/style.css183
1 files changed, 0 insertions, 183 deletions
diff --git a/web/command/html/style.css b/web/command/html/style.css
deleted file mode 100644
index e8db90c..0000000
--- a/web/command/html/style.css
+++ /dev/null
@@ -1,183 +0,0 @@
-html, body {
- font-family: sans-serif;
-
-}
-table {
- border-collapse: collapse;
-}
-
-th, td {
- text-align: left;
- padding: 8px;
- border: black 1px solid;
-}
-
-th {
- background-color: #f2f2f2;
-}
-
-a, input[type=submit] {
- /* font-weight: bold; */
- border: 1px solid #000!important;
- color: #000;
- /* border: 2px solid #0074D9!important;
- color: #0074D9; */
- padding: 3px 6px!important;
- text-decoration: none;
-}
-
-a :visited{
- color: #fff;
-}
-
-form {
- display: flex;
- flex-direction: column;
-}
-
-fieldset {
- display: flex;
- flex-direction: column;
- gap: 0.5rem;
- margin-bottom: 1rem;;
-}
-
-legend {
- background-color: #000;
- color: #fff;
- padding: 3px 6px;
- font-style: italic;
-}
-
-label:not(input[type=checkbox]+label) {
- font-weight: bold;
-}
-
-input[type=checkbox] {
- margin: 0 0.25rem 0 0;
-}
-
-footer {
- margin-top: 2rem;
- color: gray;
- font-size: smaller;
-}
-
-button, input[type=submit] {
- background: none!important;
- font-family: sans-serif;
- font-size: medium;
- cursor: pointer;
-}
-
-a:hover, button:hover, input[type=submit]:hover, button:active, a:active, input[type=submit]:active {
- background: #000!important;
- color: #fff!important;
-}
-
-.form-help {
- font-size: smaller;
-}
-
-.container {
- max-width: 800px;
- margin: 0 auto;
-}
-
-.control-group {
- display: flex;
- gap: 0.5rem;
- flex-direction: row;
-}
-
-.control-group.group-right {
- justify-content: flex-end;
-}
-
-.control-group a, .control-group button, .control-group input[type=submit] {
- text-decoration: none;
- width: initial;
-}
-
-.sites-table {
- width: 100%;
- display: grid;
- grid-template-columns: 40% 1fr 1fr 1fr;
- align-items: center;
- gap: 1rem;
- margin-bottom: 1rem;
-}
-
-.sites-table > .header, .versions-table > .header {
- font-weight: bold;
-}
-
-.sites-table > .name {
- display: flex;
- flex-direction: column;
-}
-
-.sites-table > .flags:not(.header) {
- font-family: monospace;
-}
-
-.sites-table > .name > span:nth-child(2) {
- font-size: smaller;
-}
-
-.sites-table > .actions, .versions-table > .actions {
- display: flex;
- gap: 0.5rem;
- justify-self: flex-end;
-}
-
-.versions-table {
- width: 100%;
- display: grid;
- grid-template-columns: 1fr 1fr;
- align-items: center;
- gap: 1rem;
- margin-bottom: 1rem;
-}
-
-.versions-table > .span {
- grid-column: 1 / span 2;
-}
-
-.versions-table > .date {
- display: flex;
- align-items: center;
- gap: 0.5rem;
-}
-
-.versions-table > .date > .current {
- color: #0dbe22;
- font-size: smaller;
- font-style: italic;
-}
-
-.alert {
- background-color: #f2f2f2;
- padding: 0.5rem 1rem;
- border: 1px solid #e7e7e7;
- margin-bottom: 1rem;
- font-style: italic;
-}
-
-.alert.success {
- background-color: #aaffaa;
- border: 1px solid #90ee90;
-}
-
-.alert.error {
- background-color: #ffcccb;
- border: 1px solid #ff6666;
-}
-
-.text-good {
- color: #0dbe22;
-}
-
-.text-bad {
- color: #c02020;
-} \ No newline at end of file