File: notebook.css

package info (click to toggle)
gamgi 0.17.5-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 21,236 kB
  • sloc: ansic: 166,847; xml: 116,171; makefile: 565; sh: 5
file content (64 lines) | stat: -rw-r--r-- 885 bytes parent folder | download | duplicates (6)
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
#notebook
  {
  clear: both;
  position: relative;
  height: 3em;
  }

#notebook ul
  {
  position: absolute;
  bottom: -1px;
  padding-left: 1.0em;
  width: 60em; 
  }

#notebook ul li
  {
  display: inline;
  list-style: none;
  font-weight: bold;
  }

#notebook ul a, #notebook ul span
  {
  display: block;
  float: left;
  min-width: 7em;
  padding: 4px 4px;
  margin: 1px 0.4em 0 0;
  text-align: center;
  font-size: 11px;
  text-decoration: none;
  border: 1px solid #069;
  border-bottom: none;
  }

#notebook ul span
  {
  color: #000;
  background-color: #fff;
  margin-top: 0;
  padding-bottom: 6px;
  }

#notebook ul a
  {
  color: #fff;
  background-color: #9cf;
  }

#notebook ul a:hover
  {
  background-color: #069;
  border-color: #fff;
  margin-top: 0;
  padding-bottom: 5px;
  }

div.contents
  {
  clear: both;
  border-top: 1px solid #069;
  min-width: 60em;
  }