| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- <rml>
- <head>
- <title>RCSS Test description</title>
- <link type="text/rcss" href="style.rcss"/>
- <style>
- body {
- font-size: 17dp;
- color: #444;
- position: absolute;
- top: 0; bottom: 0;
- right: 0;
- width: 400dp;
- background: #333;
- color: #ccc;
- padding: 20dp 20dp;
- z-index: 100;
- tab-index: auto;
- }
- h1, h2, h3 { padding-top: 0.8em; }
- code {
- display: block;
- white-space: pre-wrap;
- font-size: 0.9em;
- color: #aaa;
- }
- h1 { color: white; font-size: 1.3em; }
- h3 { color: white; font-size: 1.15em; }
-
- p.links a { margin: 0 0.7em; }
- #header {
- color: #ddb;
- }
- #filter {
- position: absolute;
- right: 20dp;
- top: 20dp;
- width: 50%;
- text-align: right;
- }
- input.text {
- font-size: 0.85em;
- padding: 3dp 4dp;
- width: 80%;
- background-color: #444;
- color: #ffe;
- border: 1dp #555;
- cursor: text;
- tab-index: auto;
- }
- input.text:focus {
- border-color: #dda;
- }
- #filter_text {
- color: #ffc;
- }
- #content {
- overflow: hidden auto;
- }
- #goto {
- margin: 0 20dp 10dp 20dp;
- color: #ddb;
- }
- #bottom {
- position: absolute;
- left: 0;
- bottom: 0;
- right: 0;
- text-align: left;
- word-break: break-all;
- }
- #hovertext {
- margin: 0dp 20dp 10dp 20dp;
- font-size: 0.9em;
- color: #aaa;
- min-height: 1.5em;
- }
- #hovertext.confirmation {
- color: #afa;
- }
- </style>
- </head>
- <body>
- <div id="header"/>
- <div id="filter"><input id="filterinput" type="text" value=""/><br/><span id="filter_text">Filtered 2 of 63.</span></div>
- <div id="content"/>
- <div id="bottom">
- <div id="goto"/>
- <div id="hovertext"/>
- </div>
- </body>
- </rml>
|