media_query_01.rml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <rml>
  2. <head>
  3. <title>Media query: Collapsing menu</title>
  4. <link type="text/rcss" href="../style.rcss"/>
  5. <meta name="Description" content="A basic responsive design for a collapsing menu." />
  6. <style>
  7. @spritesheet theme
  8. {
  9. src: /assets/invader.tga;
  10. selectarrow: 307px 192px 30px 37px;
  11. selectarrow-hover: 307px 230px 30px 37px;
  12. selectarrow-active: 307px 268px 30px 37px;
  13. }
  14. body {
  15. background: #ddd;
  16. color: #444;
  17. right: 440dp;
  18. width: auto;
  19. left: 0;
  20. }
  21. item {
  22. background: #fff;
  23. font-size: 1.2em;
  24. padding: 1em;
  25. border: 3dp #ccc;
  26. cursor: pointer;
  27. }
  28. item:hover {
  29. background: #eee;
  30. }
  31. item:active {
  32. background: #e0e0e0;
  33. }
  34. @media (min-width: 1000dp)
  35. {
  36. menu {
  37. display: table;
  38. focus: none;
  39. }
  40. items {
  41. display: table-row;
  42. }
  43. item {
  44. display: table-cell;
  45. text-align: center;
  46. border-right-width: 0;
  47. }
  48. item:last-child {
  49. border-right-width: 3dp;
  50. }
  51. }
  52. @media (max-width: 999dp)
  53. {
  54. menu {
  55. display: block;
  56. width: 100%;
  57. min-width: 100dp;
  58. height: 37dp;
  59. cursor: pointer;
  60. decorator: image(selectarrow contain left);
  61. }
  62. menu:hover {
  63. decorator: image(selectarrow-hover contain left);
  64. }
  65. menu:active, menu:focus {
  66. decorator: image(selectarrow-active contain left);
  67. }
  68. items {
  69. display: none;
  70. padding-top: 37dp;
  71. z-index: 10;
  72. }
  73. menu:focus items {
  74. display: block;
  75. }
  76. item {
  77. display: block;
  78. border-bottom-width: 0;
  79. }
  80. item:last-child {
  81. border-bottom-width: 3dp;
  82. }
  83. }
  84. </style>
  85. </head>
  86. <body>
  87. <menu>
  88. <items>
  89. <item>Home</item>
  90. <item>Blog</item>
  91. <item>About</item>
  92. <item>Contact</item>
  93. </items>
  94. </menu>
  95. <p>Try reducing the width of the window.</p>
  96. </body>
  97. </rml>