blob: de31571d54149f9e97b83b525a4f5f47e13660bd (
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
107
108
|
* {
font-weight: 300;
}
th, b {
font-weight: bold;
}
table {
display: inline-block;
margin-right: 40px;
vertical-align: top;
}
td, th {
text-align: left;
padding: 2px 5px;
}
.page {
text-align: left;
}
.footer {
text-align: center;
}
h1 {
text-align: left;
display: inline-block;
}
nav {
display: inline-block;
text-align: left;
}
nav a {
margin-left: 10px;
}
hr {
border: 1px solid #bbb;
margin: 10px auto 10px;
background: transparent;
}
.body {
width: 80%;
margin: 40px auto;
}
.json {
display: none;
}
.jsonview {
border: 1px solid #ddd;
background: rgba(238,238,238,0.5);
padding: 4px;
margin: 0 auto;
max-width: 100%;
overflow-x: auto;
margin-bottom: 20px;
max-height: 60vh;
}
.jsonview * {
font-family: monospace !important;
font-size: 12px;
}
.jsonview .collapser {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
.staff {
font-size: 15px;
}
.staff .body a {
border-bottom: 1px dotted;
}
.staff .editLinks a {
color: #00f;
border-bottom: 1px solid;
}
#iframe-embed, #iframe-embed tr, #iframe-embed td {
width: 79vw;
}
#iframe-embed td {
padding: 0;
}
h2 {
margin: 20px auto;
}
.avatar {
height: 40px;
width: 40px;
display: inline-block;
background-size: cover;
}
#actions button {
float: none;
width: auto;
}
iframe.embed {
position: static;
width: 100%;
height: 44vw;
border: 1px solid black;
}
.page table.projectList,
.page table.projectList td.border {
border: 0;
}
#pagination {
margin: 10px 0;
}
#pagination a {
color: #00f;
}
|