~ubuntu-branches/ubuntu/lucid/boinc/lucid

« back to all changes in this revision

Viewing changes to doc/white.css

  • Committer: Bazaar Package Importer
  • Author(s): Frank S. Thomas, Frank S. Thomas
  • Date: 2008-05-31 08:02:47 UTC
  • mfrom: (1.1.8 upstream)
  • Revision ID: james.westby@ubuntu.com-20080531080247-4ce890lp2rc768cr
Tags: 6.2.7-1
[ Frank S. Thomas ]
* New upstream release.
  - BOINC Manager: Redraw disk usage charts immediately after connecting to
    a (different) client. (closes: 463823)
* debian/copyright:
  - Added the instructions from debian/README.Debian-source about how
    repackaged BOINC tarballs can be reproduced because DevRef now
    recommends to put this here instead of in the afore-mentioned file.
  - Updated for the new release.
* Removed the obsolete debian/README.Debian-source.
* For consistency upstream renamed the core client and the command tool
  ("boinc_client" to "boinc" and "boinc_cmd" to "boinccmd"). Done the same
  in all packages and created symlinks with the old names for the binaries
  and man pages. Also added an entry in debian/boinc-client.NEWS explaining
  this change.
* debian/rules: Do not list Makefile.ins in the clean target individually,
  just remove all that can be found.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
h1 {
2
 
    font-variant: small-caps;
3
 
    font-size: 20pt;
4
 
}
 
1
/* color scheme:
 
2
 * light background (for <pre>)
 
3
 * d5f0ff (213, 240, 255)
 
4
 * medium background (for table headings)
 
5
 * (157, 221, 255)
 
6
 */
 
7
 
5
8
 
6
9
pre {
7
10
    font-size: medium;
11
14
    font-size: medium;
12
15
}
13
16
 
14
 
a:link {
15
 
        color: blue;
16
 
    text-decoration: none;
17
 
#font-weight: bold;
18
 
}
19
 
 
20
 
a:visited {
21
 
        color: blue;
22
 
    text-decoration: none;
23
 
#font-weight: bold;
24
 
}
25
 
 
26
 
a:active {
27
 
        color: blue;
28
 
#font-weight: bold;
 
17
a.heading {
 
18
    font-size: 14px;
 
19
}
 
20
 
 
21
a:link, :visited, :active{
 
22
        color: rgb(0, 105, 161);
 
23
    text-decoration: none;
 
24
        font-weight: bold;
29
25
}
30
26
 
31
27
a:hover {
32
 
    color: rgb(200,80,80);
33
 
#font-weight: bold;
 
28
    color: rgb(232, 174, 0);
 
29
        font-weight: bold;
34
30
}
35
31
 
36
32
body , table , input , select {
37
33
        font-family: "Trebuchet MS", Verdana, Arial, Sans Serif;
38
 
#font-size: small;
 
34
    font-size: 15px;
39
35
}
40
36
 
41
37
table.box {
48
44
    color: black;
49
45
}
50
46
 
 
47
span.title{
 
48
    font-variant: small-caps;
 
49
    font-size: 2em;
 
50
}
 
51
span.subtitle{
 
52
    font-size: 1.3em;
 
53
}
 
54
span.section_title{
 
55
    font-size: 1.2em;
 
56
        font-weight: bold;
 
57
    text-align: center;
 
58
}
 
59
 
 
60
 
51
61
span.note{
52
62
        font-weight: normal;
53
63
    font-size: 0.9em;
58
68
}
59
69
 
60
70
pre {
61
 
        background-color: rgb(216, 232, 255);
 
71
        background-color: rgb( 213, 240, 255);
62
72
}
63
73
 
64
74
th {
65
 
        background-color: rgb(140,160,230);
 
75
        background-color: rgb(200, 221, 250);
66
76
        color: black;
67
77
        font-weight: bold;
 
78
        border: 1px solid lightgray;
68
79
}
69
80
 
70
81
td.indent {
72
83
}
73
84
 
74
85
td.heading {
75
 
        background-color: rgb(217,217,217);
76
 
            font-weight: bold;
 
86
#background-color: rgb(157, 221, 255);
 
87
#font-weight: bold;
 
88
        background-color: rgb(223, 240, 255);
 
89
        border: 1px solid lightgray;
77
90
}
78
91
 
79
92
td.fieldname {
80
 
        background-color: rgb(237,237,237);
 
93
        background-color: rgb(235, 248, 255);
 
94
#border: 1px solid gray;
81
95
}
82
96
 
83
97
td.category {
85
99
}
86
100
 
87
101
tr.row0 {
88
 
        background-color: rgb(217,217,217);
 
102
        background-color: rgb(247,247,247);
89
103
}
90
104
 
91
105
tr.row1 {
115
129
        font-size: 80%;
116
130
        font-weight: normal;
117
131
}
 
132
 
 
133
select.selectbox {
 
134
        font-size: 12px;
 
135
    height:20px;
 
136
}
 
137
 
 
138
input.small {
 
139
        font-size: 12px;
 
140
    height:22px;
 
141
}
 
142
 
 
143
/* testing for button style */
 
144
input.btn {
 
145
    padding:0px 2px;
 
146
        font-size: 80%;
 
147
        font-weight: normal;
 
148
}
 
149