sample-utils.css 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. /* Copyright (c) Microsoft Corporation. All rights reserved. */
  2. html
  3. {
  4. cursor: default;
  5. }
  6. #featureLabel
  7. {
  8. font: 20pt/24pt "Segoe UI Semilight";
  9. margin:0;
  10. padding:5px 0 10px 0;
  11. font-weight: normal;
  12. }
  13. #inputLabel, #outputLabel
  14. {
  15. font: 11pt/15pt "Segoe UI";
  16. margin:0;
  17. padding:0;
  18. font-weight: normal;
  19. }
  20. #listLabel, #descLabel
  21. {
  22. font: 11pt/15pt "Segoe UI Semilight";
  23. font-weight:normal;
  24. }
  25. #rootGrid
  26. {
  27. width: 100%;
  28. height: 100%;
  29. display: -ms-grid;
  30. -ms-grid-columns: 100px 1fr 100px;
  31. -ms-grid-rows: 20px auto 1fr auto 20px;
  32. }
  33. #header
  34. {
  35. -ms-grid-column: 2;
  36. -ms-grid-row: 2;
  37. }
  38. #content
  39. {
  40. padding-right:20px;
  41. padding-bottom:20px;
  42. overflow:auto;
  43. display:-ms-grid;
  44. -ms-grid-columns:1fr;
  45. -ms-grid-rows: auto 1fr;
  46. -ms-grid-column: 2;
  47. -ms-grid-row: 3;
  48. }
  49. #footer
  50. {
  51. -ms-grid-column: 2;
  52. -ms-grid-row: 4;
  53. padding-bottom:10px;
  54. }
  55. #featureLabel
  56. {
  57. -ms-grid-row: 1;
  58. }
  59. #contentHost
  60. {
  61. display:-ms-grid;
  62. -ms-grid-columns:1fr;
  63. -ms-grid-rows: auto auto auto 1fr;
  64. -ms-grid-row: 2;
  65. }
  66. #inputLabel
  67. {
  68. -ms-grid-row: 1;
  69. }
  70. #input
  71. {
  72. -ms-grid-row: 2;
  73. display: -ms-grid;
  74. -ms-grid-columns: auto auto;
  75. -ms-grid-rows: auto;
  76. margin-top:10px;
  77. }
  78. #outputLabel
  79. {
  80. -ms-grid-row: 3;
  81. padding-top:10px;
  82. padding-bottom:10px;
  83. }
  84. #output
  85. {
  86. height:100%;
  87. -ms-grid-row: 4;
  88. -ms-grid-row-align:stretch;
  89. }
  90. .clear
  91. {
  92. clear:both;
  93. }
  94. #footer span
  95. {
  96. font-size:12px;
  97. }
  98. #footer .company
  99. {
  100. float:left;
  101. }
  102. #footer .links
  103. {
  104. float:right;
  105. }
  106. #footer .links a
  107. {
  108. font-size:12px;
  109. margin-left:8px;
  110. text-decoration:none;
  111. }
  112. #footer .links .pipe
  113. {
  114. font-size:9px;
  115. margin-left:8px;
  116. }
  117. #statusMessage
  118. {
  119. margin-bottom:5px;
  120. }
  121. #input .options
  122. {
  123. -ms-grid-row: 1;
  124. -ms-grid-column: 1;
  125. }
  126. #input .details
  127. {
  128. -ms-grid-row: 1;
  129. -ms-grid-column: 2;
  130. cursor:text;
  131. }
  132. .imageHolder
  133. {
  134. max-width:382px;
  135. }
  136. .imageHolder.withText
  137. {
  138. float:left;
  139. margin-right:10px;
  140. }
  141. #scenarios
  142. {
  143. margin-right:20px;
  144. }
  145. @media screen and (min-width: 800px) and (max-width: 1024px)
  146. {
  147. #rootGrid
  148. {
  149. -ms-grid-columns: 40px 1fr 40px;
  150. }
  151. }
  152. @media screen and (max-width: 799px)
  153. {
  154. #rootGrid
  155. {
  156. -ms-grid-columns: 20px 1fr 20px;
  157. }
  158. #output
  159. {
  160. padding-bottom:20px;
  161. }
  162. #input
  163. {
  164. -ms-grid-columns: auto;
  165. -ms-grid-rows: auto auto;
  166. }
  167. #input .options
  168. {
  169. -ms-grid-row: 1;
  170. -ms-grid-column: 1;
  171. margin-bottom:10px;
  172. }
  173. #input .details
  174. {
  175. -ms-grid-row: 2;
  176. -ms-grid-column: 1;
  177. }
  178. }