File: default.css

package info (click to toggle)
convertall 0.8.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,820 kB
  • sloc: python: 2,952; makefile: 7
file content (119 lines) | stat: -rw-r--r-- 1,460 bytes parent folder | download | duplicates (3)
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
/*  bellz.org style sheet  */

body {
    background: #033;
    color: white;
}

a {
    color: #0f9;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

hr {
    height: 4px;
}

h1 {
    text-align: center;
    border-top: thick double #ccc;
    padding: .3em;
    margin: 1em 0 0;
    clear: both;
}

h2 {
    border-top: thin solid #ccc;
    padding: .3em 0 0;
    margin: 1em 0 0;
}

ul {
    margin-left: 0;
}

li {
    list-style-type: square;
    padding: .2em 0;
    margin-left: 2em;
}

img {
    border: 0;
}

.interior {
    margin: 0 auto;
    width: 90%;
}

.title {
    margin: 0;
    padding: 4px 0;
    float: left;
}

.title h1 {
    font-size: 4em;
    margin: 0;
    padding: 0;
}

.toplinks {
    float: right;
    text-align: right;
}

.toplinks p {
    margin: 0;
    padding: 0;
}

.navigation {
    clear: both;
    line-height: 3em;
    margin: 0;
    padding: 0;
}

.navigation a {
    background: #366;
    margin-right: 3px;
    padding: .4em .4em;
}

.navigation a:hover {
    background: #099;
    text-decoration: none;
}

.current-nav {
    background: #366;
    margin-right: 3px;
    padding: .4em .4em 1em;
}

.content {
    background: #366;
    margin: 0 0 2em;
    padding: .5em 1.5em;
    zoom: 1;   /* fixes IE layout bug */
    /* height: 1%;   /* fixes IE layout bug */
}

.centered {
    text-align: center;
}

.smallimage {
    float: left;
    margin: 0 1em;
}

.clearer {
    clear: both;
}