Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/webroot/rsrc/css/application/config/config-template.css
12242 views
1
/**
2
* @provides phabricator-fatal-config-template-css
3
*/
4
body {
5
overflow-y: scroll;
6
background: #f9f9f9;
7
margin: 0;
8
padding: 0;
9
font: 13px/1.231 'Segoe UI', 'Segoe UI Web Regular', 'Segoe UI Symbol',
10
'Helvetica Neue', Helvetica, Arial, sans-serif;
11
text-align: left;
12
-webkit-text-size-adjust: none;
13
}
14
15
body.in-flight {
16
background: #41506e;
17
color: #e0e0e0;
18
}
19
20
.in-flight-error-detail {
21
max-width: 760px;
22
margin: 72px auto;
23
background: rgba(255, 255, 255, 0.25);
24
border-radius: 3px;
25
padding: 8px 16px;
26
}
27
28
.in-flight-error-title {
29
padding: 12px 8px;
30
font-size: 24px;
31
font-weight: 500;
32
margin: 0;
33
}
34
35
.in-flight-error-body {
36
padding: 4px 12px 12px;
37
}
38
39