forked from rjpcomputing/luaforwindows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloop.css
More file actions
executable file
·148 lines (134 loc) · 3.53 KB
/
loop.css
File metadata and controls
executable file
·148 lines (134 loc) · 3.53 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
/* GRAY #333 */
/* LIGHT #09c */
/* FORE #ccc */
/* DARK #07a */
/* BACK #eee */
/* GRAY #333 */
/* LIGHT #69f */
/* FORE #ccf */
/* DARK #039 */
/* BACK #eef */
/* GRAY #ff0 */
/* LIGHT #ffc */
/* FORE #900 */
/* DARK #900 */
/* BACK #ffe */
#Logo {
margin:-62px 0px 0px 20px;
}
/* Commom header formatting */
#Menu {
text-align:right;
top:80px;
padding:0pt 10pt 0pt 0pt;
border-right:1px solid #ccc;
/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity.
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it.
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style
declaration. The incorrect IE5/Win value is above, while the correct value is
below. See http://glish.com/css/hacks.asp for details. */
voice-family: "\"}\"";
voice-family:inherit;
width:120px;
}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct
length values to user agents that exhibit the parsing error exploited above yet get
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#Menu {width:120px;}
#Header {
font-weight:bold;
margin:30px 0px 10px 10px;
padding:13px 0px 0px 110px;
/* For IE5/Win's benefit height = [correct height] + [top padding] + [top and bottom border widths] */
height:33px; /* 19px + 13px + 2px = 33px */
border-style:solid;
border-color:#900;
border-width:1px 0px; /* top and bottom borders: 1px; left and right borders: 0px */
color:#900;
background-color:#ffc;
/* Here is the ugly brilliant hack that protects IE5/Win from its own stupidity.
Thanks to Tantek Celik for the hack and to Eric Costello for publicizing it.
IE5/Win incorrectly parses the "\"}"" value, prematurely closing the style
declaration. The incorrect IE5/Win value is above, while the correct value is
below. See http://glish.com/css/hacks.asp for details. */
voice-family: "\"}\"";
voice-family:inherit;
height:19px; /* the correct height */
}
/* I've heard this called the "be nice to Opera 5" rule. Basically, it feeds correct
length values to user agents that exhibit the parsing error exploited above yet get
the CSS box model right and understand the CSS2 parent-child selector. ALWAYS include
a "be nice to Opera 5" rule every time you use the Tantek Celik hack (above). */
body>#Header {height:19px;}
/* Other elements formatting */
body {
margin:0px;
padding:0px;
font-family:verdana, arial, helvetica, sans-serif;
font-size:smaller;
background-color:white;
}
h1 {
margin:0px 0px 15px 0px;
padding:0px;
font-weight:bold;
color:#dcc;
}
h2 {
font-style:bold;
line-height:180%;
margin:15px 0px 5px 0px;
padding:0px;
color:#a00;
}
h3 {
font-style:bold;
line-height:180%;
margin:10px 0px 5px 0px;
padding:0px;
}
p {
line-height:20px;
margin:0px 0px 16px 0px;
padding:0px;
}
code,pre { font-size:130%; }
td { vertical-align:top; }
.content {background-color:white;}
.content>p {margin:0px;}
.content>p+p {text-indent:30px;}
.content>dl dd {
margin-bottom:10px;
}
a {
color:#900;
font-weight:bold;
text-decoration:none;
}
a:link {color:#900;}
a:hover {color:#fa0;}
dl.news dt {
margin-top: 5px;
font-weight: bold;
}
dl.news dd {
margin-left: 15px;
}
#Menu ul {
list-style:none;
padding:0pt;
line-height:180%;
}
#Menu ul .inside {
margin-left:-85pt;
padding-right:5pt;
padding-bottom:3pt;
}
#Menu ul .outside {
border-right:2px solid #900;
border-bottom:2px solid #900;
margin-left:75pt;
margin-bottom:3pt;
width:10pt;
}