aboutsummaryrefslogtreecommitdiff
path: root/templates/assets/site.css
blob: 65fb4cef1a7f778786d2f7f09194b1c1d2ad1d02 (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
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;
}
#api-key {
    margin: auto;
}
#api-key textarea {
    height: 100%;
}
#api-error {
    border: 0.25em solid red;
    color: white;
    font-size: 2em;
    background-color: #ff8080;
    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;
}