/src/main/resources/org/apache/struts2/static/fonts/fonts.css

http://struts2yuiplugin.googlecode.com/ · CSS · 56 lines · 25 code · 4 blank · 27 comment · 0 complexity · bc13036757f3fa77a53e286c993048ac MD5 · raw file

  1. /*
  2. Copyright (c) 2009, Yahoo! Inc. All rights reserved.
  3. Code licensed under the BSD License:
  4. http://developer.yahoo.net/yui/license.txt
  5. version: 2.7.0
  6. */
  7. /**
  8. * YUI Fonts
  9. * @module fonts
  10. * @namespace yui-
  11. * @requires
  12. */
  13. /**
  14. * Percents could work for IE, but for backCompat purposes, we are using keywords.
  15. * x-small is for IE6/7 quirks mode.
  16. */
  17. body {
  18. font:13px/1.231 arial,helvetica,clean,sans-serif;
  19. /* for IE6/7 */
  20. *font-size:small;
  21. /* for IE Quirks Mode */
  22. *font:x-small;
  23. }
  24. /**
  25. * Nudge down to get to 13px equivalent for these form elements
  26. */
  27. select,
  28. input,
  29. button,
  30. textarea,
  31. button {
  32. font:99% arial,helvetica,clean,sans-serif;
  33. }
  34. /**
  35. * To help tables remember to inherit
  36. */
  37. table {
  38. font-size:inherit;
  39. font:100%;
  40. }
  41. /**
  42. * Bump up IE to get to 13px equivalent for these fixed-width elements
  43. */
  44. pre,
  45. code,
  46. kbd,
  47. samp,
  48. tt {
  49. font-family:monospace;
  50. *font-size:108%;
  51. line-height:100%;
  52. }