summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web/wwwroot/Content/css/json-validator.css
blob: de0f8fedec692f1553815127c304e1fe4a1eaf9b (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
/*********
** Main layout
*********/
#content {
    max-width: 100%;
}

#output {
    padding: 10px;
    overflow: auto;
}

#output table td {
    font-family: monospace;
}

#output table tr th,
#output table tr td {
    padding: 0 0.75rem;
    white-space: pre-wrap;
}


/*********
** Result banner
*********/
.banner {
    border: 2px solid gray;
    border-radius: 5px;
    margin-top: 1em;
    padding: 1em;
}

.banner.success {
    border-color: green;
    background: #CFC;
}

.banner.error {
    border-color: red;
    background: #FCC;
}

.save-metadata {
    margin-top: 1em;
    font-size: 0.8em;
    opacity: 0.3;
}

/*********
** Validation results
*********/
.table {
    border-bottom: 1px dashed #888888;
    margin-bottom: 5px;
}

#metadata th, #metadata td {
    text-align: left;
    padding-right: 0.7em;
}

.table {
    border: 1px solid #000000;
    background: #ffffff;
    border-radius: 5px;
    border-spacing: 1px;
    overflow: hidden;
    cursor: default;
    box-shadow: 1px 1px 1px 1px #dddddd;
}

.table tr {
    background: #eee;
}

.table tr:nth-child(even) {
    background: #fff;
}

#output div.sunlight-line-highlight-active {
    background-color: #eeeacc;
}

.footer-tip {
    color: gray;
    font-size: 0.9em;
}

.footer-tip a {
    color: gray;
}