~ubuntu-branches/ubuntu/edgy/muse-el/edgy

« back to all changes in this revision

Viewing changes to examples/mwolson/stylesheets/screen.css

  • Committer: Bazaar Package Importer
  • Author(s): Michael W. Olson (GNU address)
  • Date: 2005-12-17 12:11:27 UTC
  • Revision ID: james.westby@ubuntu.com-20051217121127-b4yfr70a7hnrexdg
Tags: upstream-3.02.5
ImportĀ upstreamĀ versionĀ 3.02.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* Michael Olson's tweaked emacs-wiki stylesheet
 
2
 
 
3
   Elements for most of my web site.
 
4
*/
 
5
 
 
6
/* Footnote */
 
7
 
 
8
.navfoot hr {
 
9
  margin-bottom: 0;
 
10
  padding: 0;
 
11
}
 
12
 
 
13
.navfoot table {
 
14
  border-spacing: 0;
 
15
  border-width: 0;
 
16
  clear: right;
 
17
  margin: 0;
 
18
  padding: 0;
 
19
}
 
20
 
 
21
.navfoot td {
 
22
  border-spacing: 0;
 
23
  border-width: 0;
 
24
  margin: 0;
 
25
  padding: 0;
 
26
}
 
27
 
 
28
/* Menu */
 
29
 
 
30
.menu {
 
31
  background-color: #F5F5F5;    /* white smoke */
 
32
  color: white;
 
33
  border: 1px solid black;
 
34
  display: inline;
 
35
  float: right;
 
36
  clear: both;
 
37
  margin-left: 0.2em;
 
38
  margin-bottom: 0.2em;
 
39
  padding: .5em;
 
40
}
 
41
 
 
42
.menuitem {
 
43
  text-align: left;
 
44
}
 
45
 
 
46
.menuitem a:link, .menuitem a:visited {
 
47
  color: #006400;               /* dark green */
 
48
  display: block;
 
49
  margin: .2em;
 
50
  padding-top: 4px;
 
51
  text-decoration: none;
 
52
}
 
53
 
 
54
.menuitem a:hover { 
 
55
  background-color: #D3D3D3;    /* light gray */
 
56
}
 
57
 
 
58
#tooltipbox {
 
59
  float: right;
 
60
  visibility: hidden;
 
61
}
 
62
 
 
63
#tooltip {
 
64
  color: #006400;               /* dark green */
 
65
}
 
66
 
 
67
/* Planner */
 
68
 
 
69
.taskA { color: red }
 
70
 
 
71
.taskB { color: green }
 
72
 
 
73
.taskC { color: navy }
 
74
 
 
75
.taskX {
 
76
  color: #696969;               /* dim gray */
 
77
  text-decoration: line-through;
 
78
}
 
79
 
 
80
/* Source coloring */
 
81
 
 
82
.builtin {
 
83
  /* font-lock-builtin-face */
 
84
  color: #9370db;
 
85
}
 
86
 
 
87
.comment {
 
88
  /* font-lock-comment-face */
 
89
  color: #b22222;
 
90
}
 
91
 
 
92
.constant {
 
93
  /* font-lock-constant-face */
 
94
  color: #b8860b;
 
95
}
 
96
 
 
97
.doc {
 
98
}
 
99
 
 
100
.function-name {
 
101
  /* font-lock-function-name-face */
 
102
  color: #0000ff;
 
103
}
 
104
 
 
105
.keyword {
 
106
  /* font-lock-keyword-face */
 
107
  color: #a020f0;
 
108
}
 
109
  
 
110
.string {
 
111
  /* font-lock-string-face */
 
112
  color: #228b22;
 
113
}