aboutsummaryrefslogtreecommitdiff
path: root/templates/assets/site.css
diff options
context:
space:
mode:
Diffstat (limited to 'templates/assets/site.css')
-rw-r--r--templates/assets/site.css46
1 files changed, 45 insertions, 1 deletions
diff --git a/templates/assets/site.css b/templates/assets/site.css
index 65fb4ce..df1bab8 100644
--- a/templates/assets/site.css
+++ b/templates/assets/site.css
@@ -35,6 +35,15 @@ tt {
35 border: 1px solid #999; 35 border: 1px solid #999;
36 padding: 0.25em; 36 padding: 0.25em;
37} 37}
38#username {
39 font-weight: bolder;
40}
41#login-row {
42 text-align: right;
43}
44#api-key-block {
45 display: none;
46}
38#api-key { 47#api-key {
39 margin: auto; 48 margin: auto;
40} 49}
@@ -43,13 +52,26 @@ tt {
43} 52}
44#api-error { 53#api-error {
45 border: 0.25em solid red; 54 border: 0.25em solid red;
46 color: white; 55 color: yellow;
47 font-size: 2em; 56 font-size: 2em;
48 background-color: #ff8080; 57 background-color: #ff8080;
49 padding: 1em; 58 padding: 1em;
50 text-align: center; 59 text-align: center;
51 display: none; 60 display: none;
52} 61}
62#api-error .sub-message {
63 font-size: 1rem;
64 color: white;
65}
66#api-success {
67 border: 0.25em solid green;
68 color: green;
69 font-size: 2em;
70 background-color: #00ff80;
71 padding: 1em;
72 text-align: center;
73 display: none;
74}
53#account-table tr td:nth-child(2), 75#account-table tr td:nth-child(2),
54#account-table tr td:nth-child(3) { 76#account-table tr td:nth-child(3) {
55 text-align: center; 77 text-align: center;
@@ -60,3 +82,25 @@ tt {
60body.isAdmin .admin { 82body.isAdmin .admin {
61 display: initial; 83 display: initial;
62} 84}
85.tag {
86 display: block;
87 float: right;
88 color: white;
89 font-size: 0.8em;
90 border-radius: 0.3em;
91 padding: 0.2em 0.5em;
92 cursor: default;
93}
94.vendor-aws {
95 background-color: orange;
96}
97.vendor-gcp {
98 background-color: blue;
99}
100.vendor-oci {
101 background-color: red;
102}
103.vendor-azure {
104 color: black;
105 background-color: lightblue;
106}