blob: 2cb4c5884adfbae5fc944667403c8634a5b0193a (
plain) (
blame)
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
|
/* about:plugins */
#plugin-table
{
margin: 14px;
width: 80%;
text-align: left;
border-collapse: collapse;
}
#plugin-table th
{
padding: 8px;
background:#b9c9ff;
border-top: 4px solid #aabcff;
border-bottom: 1px solid #fff;
color: #039;
}
#plugin-table td
{
padding: 8px;
background: #e8edff;
border-bottom: 1px solid #fff;
color: #669;
border-top: 1px solidtransparent;
}
#plugin-table tr:hover td
{
background: #d0dafd;
color:#339;
}
/* 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
{
margin-bottom: 0.5em;
}
.memory-table
{
margin: 14px;
width: 75%;
border-collapse: collapse;
}
.memory-table th
{
padding: 2px;
background:#b9c9ff;
border-top: 4px solid #aabcff;
border-bottom: 1px solid #fff;
color: #039;
}
.memory-table td
{
padding: 2px;
background: #e8edff;
border-bottom: 1px solid #fff;
color: #669;
border-top: 1px solidtransparent;
}
/* about:applications */
.applications-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;
}
.applications-body table { width: 100%; border-collapse: collapse; }
.applications-body table, td {
border: 1px solid #d3d7cf;
border-left: none; border-right: none;
}
.applications-body h1 {
color: #babdb6;
text-shadow: 0 1px 0 white;
margin-bottom: 0;
}
.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; }
|