ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/i-scream/web/www/styles/handheld.css
Revision: 1.2
Committed: Mon Nov 29 15:48:24 2004 UTC (19 years, 5 months ago) by tdb
Content type: text/css
Branch: MAIN
Changes since 1.1: +12 -1 lines
Log Message:
Looks like it still pulls in the main css, so we'll need to ensure we
override everything we want to change (not just remove it). This is on
PIE, but shouldn't cause issues on other browsers.

File Contents

# Content
1 html,body {
2 background: #ffffff;
3 color: #000000;
4 font-family: sans-serif;
5 font-size: small;
6 margin: 0px;
7 padding: 0px;
8 }
9
10 /* Contains the entire of the page */
11 #container {
12 padding: 0px;
13 }
14
15 /* Contains the menu */
16 #menu {
17 margin: 5px;
18 width: 100pc;
19 background: #eeeeFF;
20 color: #000000;
21 border: 1px solid #000066;
22 }
23 #menu .cornerlogo {
24 display: none;
25 }
26 #menu .heading {
27 background: #000066;
28 color: #ffffff;
29 margin: 0px;
30 padding: 3px;
31 }
32 #menu .logo {
33 display: none;
34 }
35 #menu .logo img {
36 display: none;
37 }
38 #menu ul {
39 margin: 5px;
40 padding: 5px 0px 5px 0px;
41 text-align: center;
42 list-style: none;
43 }
44 #menu br {
45 display: none;
46 }
47
48 /* Contains the main page - including header and footer */
49 #main {
50 margin-left: 0px;
51 padding: 0px;
52 position: relative;
53 }
54
55 /* Contains the header */
56 #header {
57 padding: 0px;
58 display: none;
59 }
60
61 /* Contains the footer */
62 #footer {
63 padding: 10px 0px 10px 0px;
64 }
65 #footer p {
66 text-align: center;
67 font-size: x-small;
68 }
69
70 /* Contains the body text of the page */
71 #contents {
72 padding: 0px 15px 0px 15px;
73 }
74 #contents .top {
75 margin-top: 0px;
76 }
77 #contents h1 {
78 padding: 5px;
79 margin: 30px -15px 20px -15px;
80 background: #eeeeff;
81 border-bottom: 5px solid #000066;
82 color: #000066;
83 text-align: left;
84 }
85 #contents h2 {
86 padding: 4px;
87 margin: 20px -10px 20px -10px;
88 background: #eeeeff;
89 color: #000000;
90 border-bottom: 2px solid #000066;
91 }
92 #contents h3 {
93 padding-top: 5px;
94 margin: 10px -5px 10px -5px;
95 border-bottom: 1px solid #000066;
96 }
97 #contents pre {
98 border-left: 2px solid #ff0000;
99 margin-left: 5px;
100 padding-left: 5px;
101 background: #f0f0f0;
102 color: #000000;
103 /*font-size: larger;*/
104 }
105 #topnav {
106 margin: -15px -10px 0px 0px;
107 padding: 0px;
108 text-align: left;
109 background: transparent;
110 color: #000000;
111 }
112 #topnav ul {
113 padding-left: 0px;
114 margin-left: 0px;
115 display: inline;
116 }
117 #topnav li {
118 padding: 3px;
119 list-style: none;
120 display: inline;
121 }
122 #cvslog div {
123 border: 2px solid #000066;
124 margin: 15px 0px 15px 0px;
125 }
126 #cvslog div.logitemfirst {
127 margin: 0px;
128 padding: 5px 0px 5px 0px;
129 border: 0px;
130 }
131 #cvslog div.logitem {
132 margin: 0px;
133 padding: 5px 0px 5px 0px;
134 border: 0px;
135 border-top: 1px dashed #000066;
136 }
137 #cvslog h3 {
138 background: #000066;
139 color: #ffffff;
140 margin: 0px;
141 padding: 3px;
142 }
143 #cvslog a.cvsloghead {
144 color: #ffffff;
145 }
146 #cvslog p {
147 margin: 0px;
148 padding: 5px;
149 }
150 #cvslog pre {
151 padding: 5px;
152 margin: 10px;
153 }
154
155 /* All images have no border */
156 img {
157 border: 0px;
158 }
159
160 /* For when we want to hide something to CSS browsers */
161 .invisible {
162 display: none;
163 }