/usr/share/epiphany-browser/pages/about.css is in epiphany-browser-data 3.10.3-0ubuntu2.
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 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 | /* Global CSS for pages */
h1 {
color: #babdb6;
text-shadow: 0 1px 0 white;
margin-bottom 0;
}
body {
font: 11pt cantarell;
color: #2e3436;
padding: 20px 20px 0 20px;
background-color: #f6f6f4;
background-image: -webkit-gradient(
linear,
left top,
left bottom,
color-stop(0, #eeeeec),
color-stop(1, #f6f6f4)
);
background-size: 100% 5em;
background-repeat: no-repeat;
}
/* about:plugins */
#plugin-table
{
margin-top: 10px;
width: 96%;
text-align: left;
border-collapse: collapse;
}
#plugin-table th
{
padding: 6px;
background: #565051;
border: 2px solid #565051;
color: #f6f6f4;
width: 33%;
}
#plugin-table td
{
padding: 4px;
background: #f6f6f4;
border-bottom: 1px solid #d3d7cf;
color: #2e3436;
border-top: 1px solidtransparent;
}
#plugin-table tr:hover td
{
background: #d3d7cf;
color: #2e3436;
}
/* about:epiphany */
#ephytext {
margin-top: 15%;
font-size: 1.3em;
text-align: center;
}
#from {
margin-top: 1em;
font-size: 1.5em;
text-align: right;
}
/* about:memory */
.memory-table caption
{
font-size: 16pt;
font-weight: bold;
margin-bottom: 0.9em;
color: #2e3436;
text-shadow: 0 1px 0 white;
}
.memory-table
{
margin: 0 12.5% 0.9em 12.5%;
width: 80%;
text-align: left;
border-collapse: collapse;
}
.memory-table th
{
padding: 4px;
background: #565051;
border: 2px solid #565051;
color: #f6f6f4;
}
.memory-table td
{
padding: 2px;
background: #f6f6f8;
border-bottom: 1px solid #d3d7cf;
color: #2e3436;
border-top: 1px solidtransparent;
width: 16%;
}
.memory-table tr:hover td
{
background: #d3d7cf;
color: #2e3436;
}
/* about:applications */
.applications-body table { width: 100%; border-collapse: collapse; }
.applications-body table, td {
border: 1px solid #d3d7cf;
border-left: none; border-right: none;
}
.applications-body p { margin-bottom: 30px; }
.applications-body td { padding: 15px 15px;}
.applications-body td.icon { width: 64px; }
.applications-body td.datas { width: 200px; }
.applications-body td.input { width: 64px; }
.applications-body td.date { width: auto; text-align: right; font-style: italic; font-size: small; }
.applications-body .appname { font-weight: bold; }
.applications-body .appurl, td.date { color: #babdb6; }
.applications-body input { width: 100%; padding: 8px; }
/* about:incognito */
.incognito-body {
margin: 0;
padding: 0;
}
.incognito-body div#mainblock {
display: table;
max-width: 40em;
margin-left: auto;
margin-right: auto;
height: 75%;
}
.incognito-body div#mainblock>div {
margin: 0 10px;
display: table-cell;
vertical-align: middle;
padding: 0 20px 0 160px;
}
.incognito-body h1 {
color: #888a85;
}
|