Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions skel/share/httpd/static/styles/billing.css
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
h1, h2
{
text-align: center;
color: #3C3633;
color: blue;
}

table
Expand All @@ -19,13 +19,13 @@ table

tr.total th, tr.total td
{
background: #747264;
color: #EEEDEB;
background: #0000FF;
color: white;
}

a
{
color: #EEEDEB;
color: white;
}

.action
Expand Down
58 changes: 21 additions & 37 deletions skel/share/httpd/static/styles/common.css
Original file line number Diff line number Diff line change
@@ -1,22 +1,22 @@
:root {
--v-page-background-color: #f1efed;
--v-page-text-color: #222831;
--v-table-border-color: rgba(64, 60, 56, 0.5);
--v-table-header-background-color: #403c38;
--v-tr-odd-background-color: #e9e9e9;
--v-tr-even-background-color: #f6f6f6;
--v-page-header-background-color: #403c38;
--v-page-header-text-color: #ffffff;
--v-page-header-separator-color: #e3513c;
--v-page-background-color: white;
--v-page-text-color: black;
--v-table-border-color: gray;
--v-table-header-background-color: #115259;
--v-tr-odd-background-color: #efefef;
--v-tr-even-background-color: #bebebe;
--v-page-header-background-color: transparent;
--v-page-header-text-color: red;
--v-page-header-separator-color: transparent;

--v-index-container-background-color: #e9e9e9;

--v-link-hover-color: #e3513c;

--v-space-precious: #F28585;
--v-space-sticky: #FFA447;
--v-space-cached: #FFFC9B;
--v-space-free: #B7E5B4;
--v-space-precious: red;
--v-space-sticky: magenta;
--v-space-cached: green;
--v-space-free: yellow;

}

Expand All @@ -31,9 +31,7 @@

body
{
/*background: url("/images/bg.svg"); */
background-color: var(--v-page-background-color);
color: var(--v-page-text-color);
background: url("/images/bg.svg");
margin: 0px;
}

Expand All @@ -44,10 +42,8 @@ img

#bird_small
{
color: var(--v-page-header-text-color);
background-color: var(--v-page-header-background-color);
padding: 1rem;
border-bottom: 4px solid var(--v-page-header-separator-color);
float: left;
color: red;
}

#bird_large
Expand Down Expand Up @@ -103,31 +99,19 @@ img
width: 90%;
}

table, tr, th, td {
border-collapse: collapse;
border: 0px solid;
height: 3rem;
}

table
{
border-collapse: separate;
border-collapse: collapse;
border-spacing: 0;
outline: 1px solid var(--v-table-border-color);
overflow: hidden;
border: 1px solid var(--v-table-border-color);
width: 100%;
color: var(--v-page-text-color);
/*margin: 0 0 40px 0;*/
};

}

td, th
{
padding: .5em 1em;
border: 0px solid gray;
margin-bottom: 10px;
padding: 0;
height: 6px;
padding: 4px;
border: 1px solid var(--v-table-border-color);
}

th
Expand Down
14 changes: 9 additions & 5 deletions skel/share/httpd/static/styles/poolinfo.css
Original file line number Diff line number Diff line change
Expand Up @@ -64,15 +64,19 @@ th
font-weight: normal;
}

th.active, th.max, th.queued
th.active, th.max
{
background: #E0CCBE;
color: #3C3633;
background: #0099FF;
}

th.queued
{
background: #00bbFF;
}

td.idle
{
color: #3C3633;
color: #008080;
}

td.queued
Expand All @@ -82,6 +86,6 @@ td.queued

tr.total th, tr.total td
{
background: #747264;
background: #0000FF;
color: white;
}
16 changes: 10 additions & 6 deletions skel/share/httpd/static/styles/queueInfo.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,19 @@ th
font-weight: normal;
}

th.active, th.max, th.queued
th.active, th.max
{
background: #FFA27F;
color: #3C3633;
background: #0099FF;
}

th.queued
{
background: #00bbFF;
}

td.idle
{
color: #3C3633;
color: #008080;
}

td.queued
Expand All @@ -21,6 +25,6 @@ td.queued

tr.total th, tr.total td
{
background: #FFE8C5;
color: #3C3633;
background: #0000FF;
color: white;
}
1 change: 1 addition & 0 deletions skel/share/httpd/static/styles/restoreHandler.css
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
h1, h2
{
text-align: center;
color: blue;
}

h1
Expand Down
Loading