demo.css 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. /*
  2. * Copyright 2007 The Closure Library Authors. All Rights Reserved.
  3. *
  4. * Use of this source code is governed by the Apache License, Version 2.0.
  5. * See the COPYING file for details.
  6. */
  7. /* Author: attila@google.com (Attila Bodis) */
  8. @import url(../../css/common.css);
  9. body {
  10. background-color: #ffe;
  11. font: normal 10pt Arial, sans-serif;
  12. }
  13. /* Misc. styles used for logging and debugging. */
  14. fieldset {
  15. padding: 4px 8px;
  16. margin-bottom: 1em;
  17. }
  18. fieldset legend {
  19. font-weight: bold;
  20. color: #036;
  21. }
  22. label, input {
  23. vertical-align: middle;
  24. }
  25. .hint {
  26. font-size: 90%;
  27. color: #369;
  28. }
  29. .goog-debug-panel {
  30. border: 1px solid #369;
  31. }
  32. .goog-debug-panel .logdiv {
  33. position: relative;
  34. width: 100%;
  35. height: 8em;
  36. overflow: scroll;
  37. overflow-x: hidden;
  38. overflow-y: scroll;
  39. }
  40. .goog-debug-panel .logdiv .logmsg {
  41. font: normal 10px "Lucida Sans Typewriter", "Courier New", Courier, fixed;
  42. }
  43. .perf {
  44. margin: 0;
  45. border: 0;
  46. padding: 4px;
  47. font: italic 95% Arial, sans-serif;
  48. color: #999;
  49. }
  50. #perf {
  51. position: absolute;
  52. right: 0;
  53. bottom: 0;
  54. text-align: right;
  55. margin: 0;
  56. border: 0;
  57. padding: 4px;
  58. font: italic 95% Arial, sans-serif;
  59. color: #999;
  60. }