This file is indexed.

/usr/share/epiphany-browser/pages/error.css is in epiphany-browser-data 3.22.7-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/* Global CSS for error pages */

html {
    font-family: Cantarell, sans-serif;
    font: 12pt cantarell;
    padding: 40px 20px 0 20px;
}

#container {
    padding: 2em;
    margin: 2em auto;
    background-color: #fff;
    max-width: 500px;
}

#leftpanel {
    vertical-align: top;
    display: inline-block;
    margin-right: 5px;
    width: 10%;
}

#rightpanel {
    vertical-align: top;
    display: inline-block;
    margin-left: 5px;
    width: 80%;
}

#rightpanel .hidden {
    display: none;
}

#rightpanel .visible {
    display: block;
}

#rightpanel .clickable {
    cursor: pointer;
    color: #888a85;
}

#rightpanel .clickable:hover,
#rightpanel .clickable:focus {
    color: #a6ad9c;
}

#msg-title {
    font-size: 16pt;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 10px;
}

#msg-title.default {
    color: #2e3436;
}

#msg-title.danger {
    color: #cc0000;
}

#msg-body {
    margin-top: 10px;
    margin-bottom: 10px;
}

#msg-details {
    margin-top: 10px;
    margin-bottom: 10px;
}

#msg-details div {
    font-size: 11pt;
    margin-top: 5px;
    margin-bottom: 5px;
}

#footer {
    margin-top: 35px;
    margin-bottom: 0;
}

.btn {
    min-width: 200px;
    height: 32px;
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 4px;
}

.btn:focus,
.btn:active:focus,
.btn.active:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
}

.btn:hover,
.btn:focus {
    color: #333;
    text-decoration: none;
}

.suggested-action {
    color: #fff;
    border-color: #1c5187;
    background-image: linear-gradient(to bottom, #86add6, #538ac5 60%, #2a76c6);
}

.suggested-action:hover,
.suggested-action:focus,
.suggested-action:active,
.suggested-action.active {
    color: #fff;
    background-image: linear-gradient(to bottom, #63a0de, #4a90d9 60%, #3986d5);
}

.destructive-action {
    color: #fff;
    border-color: #8e0b0b;
    background-image: linear-gradient(to bottom, #ef2929, #ee1616 60%, #d51010);
}

.destructive-action:hover,
.destructive-action:focus,
.destructive-action:active,
.destructive-action.active {
    color: #fff;
    background-image: linear-gradient(to bottom, #f14545, #ef2929 60%, #ee1616);
}