Skip to content

Commit 666ebcf

Browse files
INitial Commit
1 parent 5e823f1 commit 666ebcf

2 files changed

Lines changed: 222 additions & 19 deletions

File tree

docs/Data/rotor.css

Lines changed: 204 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,204 @@
1+
2+
body, td, th, p
3+
{
4+
font-family: verdana, sans-serif;
5+
font-size: 12px;
6+
}
7+
8+
pre, code
9+
{
10+
font-family: Courier, monospace;
11+
font-size: 12px;
12+
}
13+
14+
/*/*/a{}
15+
body,
16+
body td,
17+
body th,
18+
body pre,
19+
body code,
20+
body p {
21+
font-size: x-small;
22+
voice-family: "\"}\"";
23+
voice-family: inherit;
24+
font-size: small;
25+
}
26+
27+
/* */
28+
29+
30+
/*table
31+
{
32+
width:100%;
33+
color: black;
34+
background: white; <!--#FFFFCC;-->
35+
}*/
36+
table {
37+
--color: #d0d0f5;
38+
}
39+
40+
thead,
41+
tfoot {
42+
background: var(--color);
43+
}
44+
45+
tbody tr:nth-child(even) {
46+
background: color-mix(in srgb, var(--color), transparent 60%);
47+
}
48+
49+
/*table.plain
50+
{
51+
52+
color: black;
53+
background: white;
54+
}
55+
56+
57+
td, th
58+
{
59+
60+
color: black;
61+
background: white; <!--#FFFFCC-->
62+
padding: 1px;
63+
}
64+
65+
66+
tr.green
67+
{
68+
69+
color: black;
70+
background: green;
71+
}
72+
*/
73+
74+
a:link
75+
{
76+
color: gray; <!--blue-->
77+
}
78+
79+
a:visited
80+
{
81+
color: gray;<!--blue-->
82+
}
83+
84+
a:active
85+
{
86+
color: gray;
87+
}
88+
89+
hr
90+
{
91+
color: black;
92+
background: white;
93+
margin-left: 0px;
94+
margin-right: 0px;
95+
}
96+
97+
h1, h2, h2.top, h3, h3.underline, h4, h5
98+
{
99+
font-family: Verdana, Arial, sans-serif;
100+
color: #000099;
101+
background: white;
102+
margin-left: 2px;
103+
}
104+
105+
h2, h2.top
106+
{
107+
font-weight: normal; <!--bold;-->
108+
}
109+
110+
h3
111+
{
112+
font-weight: normal;
113+
}
114+
115+
h3.underline
116+
{
117+
font-weight: normal;
118+
text-decoration: underline;
119+
}
120+
121+
h4, h5
122+
{
123+
font-weight: normal;
124+
margin-left: 12px;
125+
}
126+
127+
128+
li.none
129+
{
130+
list-style-type: none;
131+
}
132+
133+
li.inside
134+
{
135+
list-style-position: inside;
136+
}
137+
138+
ul.none
139+
{
140+
list-style-type: none;
141+
}
142+
143+
ul.inside
144+
{
145+
list-style-position: inside;
146+
}
147+
148+
ol.none
149+
{
150+
list-style-type: none;
151+
}
152+
153+
ol.inside
154+
{
155+
list-style-position: inside;
156+
}
157+
158+
159+
ul li.circle
160+
{
161+
list-style-type: circle;
162+
}
163+
164+
ul li.square
165+
{
166+
list-style-type: square;
167+
}
168+
169+
ol li.upperA
170+
{
171+
list-style-type: upper-alpha;
172+
}
173+
174+
ol li.lowerA
175+
{
176+
list-style-type: lower-alpha;
177+
}
178+
179+
ol li.upperR
180+
{
181+
list-style-type: upper-roman;
182+
}
183+
184+
ol li.lowerR
185+
{
186+
list-style-type: lower-roman;
187+
}
188+
189+
ol li.decimal
190+
{
191+
list-style-type: decimal;
192+
}
193+
194+
.codesample
195+
{
196+
font-family: Courier, monospace;
197+
}
198+
199+
.center {
200+
display: block;
201+
margin-left: auto;
202+
margin-right: auto;
203+
width: 50%;
204+
}

docs/rotor.css

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -27,35 +27,34 @@ body p {
2727
/* */
2828

2929

30-
table
30+
/*table
3131
{
3232
width:100%;
3333
color: black;
3434
background: white; <!--#FFFFCC;-->
35-
}
35+
}*/
3636

37-
table.plain
38-
{
39-
40-
color: black;
41-
background: white;
37+
table {
38+
font-family: Arial, Helvetica, sans-serif;
39+
border-collapse: collapse;
40+
width: 100%;
4241
}
4342

44-
45-
td, th
46-
{
47-
48-
color: black;
49-
background: white; <!--#FFFFCC-->
50-
padding: 1px;
43+
td, th {
44+
border: 1px solid #ddd;
45+
padding: 8px;
5146
}
5247

48+
tr:nth-child(even){background-color: #f2f2f2;}
5349

54-
tr.green
55-
{
56-
57-
color: black;
58-
background: green;
50+
tr:hover {background-color: #ddd;}
51+
52+
th {
53+
padding-top: 12px;
54+
padding-bottom: 12px;
55+
text-align: left;
56+
background-color: #04AA6D;
57+
color: white;
5958
}
6059

6160

0 commit comments

Comments
 (0)