Skip to content

Commit b2d92b6

Browse files
Initial Commit
1 parent 46cf1e4 commit b2d92b6

3 files changed

Lines changed: 227 additions & 227 deletions

File tree

docs/rotor.css

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

docs/rotor.css1

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
th,
2+
td {
3+
border: 1px solid rgb(160 160 160);
4+
padding: 8px 10px;
5+
}
6+
7+
th[scope="col"] {
8+
background-color: #505050;
9+
color: #fff;
10+
}
11+
12+
th[scope="row"] {
13+
background-color: #d6ecd4;
14+
}
15+
16+
td {
17+
text-align: center;
18+
}
19+
20+
tr:nth-of-type(even) {
21+
background-color: #eee;
22+
}
23+
24+
table {
25+
border-collapse: collapse;
26+
border: 2px solid rgb(140 140 140);
27+
font-family: sans-serif;
28+
font-size: 0.8rem;
29+
letter-spacing: 1px;
30+
}
31+
32+
caption {
33+
caption-side: bottom;
34+
padding: 10px;
35+
}

0 commit comments

Comments
 (0)