description.rml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <rml>
  2. <head>
  3. <title>RCSS Test description</title>
  4. <link type="text/rcss" href="style.rcss"/>
  5. <style>
  6. body {
  7. font-size: 17dp;
  8. color: #444;
  9. position: absolute;
  10. top: 0; bottom: 0;
  11. right: 0;
  12. width: 400dp;
  13. background: #333;
  14. color: #ccc;
  15. padding: 20dp 20dp;
  16. z-index: 100;
  17. tab-index: auto;
  18. }
  19. h1, h2, h3 { padding-top: 0.8em; }
  20. code {
  21. display: block;
  22. white-space: pre-wrap;
  23. font-size: 0.9em;
  24. color: #aaa;
  25. }
  26. h1 { color: white; font-size: 1.3em; }
  27. h3 { color: white; font-size: 1.15em; }
  28. p.links a { margin: 0 0.7em; }
  29. #header {
  30. color: #ddb;
  31. }
  32. #filter {
  33. position: absolute;
  34. right: 20dp;
  35. top: 20dp;
  36. width: 50%;
  37. text-align: right;
  38. }
  39. input.text {
  40. font-size: 0.85em;
  41. padding: 3dp 4dp;
  42. width: 80%;
  43. background-color: #444;
  44. color: #ffe;
  45. border: 1dp #555;
  46. cursor: text;
  47. tab-index: auto;
  48. }
  49. input.text:focus {
  50. border-color: #dda;
  51. }
  52. #filter_text {
  53. color: #ffc;
  54. }
  55. #content {
  56. overflow: hidden auto;
  57. }
  58. #goto {
  59. margin: 0 20dp 10dp 20dp;
  60. color: #ddb;
  61. }
  62. #bottom {
  63. position: absolute;
  64. left: 0;
  65. bottom: 0;
  66. right: 0;
  67. text-align: left;
  68. word-break: break-all;
  69. }
  70. #hovertext {
  71. margin: 0dp 20dp 10dp 20dp;
  72. font-size: 0.9em;
  73. color: #aaa;
  74. min-height: 1.5em;
  75. }
  76. #hovertext.confirmation {
  77. color: #afa;
  78. }
  79. </style>
  80. </head>
  81. <body>
  82. <div id="header"/>
  83. <div id="filter"><input id="filterinput" type="text" value=""/><br/><span id="filter_text">Filtered 2 of 63.</span></div>
  84. <div id="content"/>
  85. <div id="bottom">
  86. <div id="goto"/>
  87. <div id="hovertext"/>
  88. </div>
  89. </body>
  90. </rml>