aboutsummaryrefslogtreecommitdiff
path: root/templates/assets/site.css
blob: df1bab8f553f3f0cfe7388720b8accbcb9c1407b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
html {
    display: grid;
    grid-template-columns: [left] 10% [main] auto [right] 10%;
    grid-template-rows: [main] auto;
}
body {
    grid-column: main;
    grid-row: main;
}
table {
    width: 100%;
    border: 1px solid black;
    border-collapse: collapse;
}
td, th {
    border: 1px solid black;
    padding: 0.5em;
}
th {
    background-color: #CCCCCC;
}
textarea {
    height: 10em;
    width: 100%;
    resize: none;
}
a, a:visited {
    color: blue;
}
h1 {
    text-align: center;
}
tt {
    background-color: #CCC;
    border: 1px solid #999;
    padding: 0.25em;
}
#username {
    font-weight: bolder;
}
#login-row {
    text-align: right;
}
#api-key-block {
    display: none;
}
#api-key {
    margin: auto;
}
#api-key textarea {
    height: 100%;
}
#api-error {
    border: 0.25em solid red;
    color: yellow;
    font-size: 2em;
    background-color: #ff8080;
    padding: 1em;
    text-align: center;
    display: none;
}
#api-error .sub-message {
    font-size: 1rem;
    color: white;
}
#api-success {
    border: 0.25em solid green;
    color: green;
    font-size: 2em;
    background-color: #00ff80;
    padding: 1em;
    text-align: center;
    display: none;
}
#account-table tr td:nth-child(2),
#account-table tr td:nth-child(3) {
    text-align: center;
}
.admin {
    display: none;
}
body.isAdmin .admin {
    display: initial;
}
.tag {
    display: block;
    float: right;
    color: white;
    font-size: 0.8em;
    border-radius: 0.3em;
    padding: 0.2em 0.5em;
    cursor: default;
}
.vendor-aws {
    background-color: orange;
}
.vendor-gcp {
    background-color: blue;
}
.vendor-oci {
    background-color: red;
}
.vendor-azure {
    color: black;
    background-color: lightblue;
}