fonts.css 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. Licensed Materials - Property of IBM
  3. IBM Cognos Products: ps
  4. (C) Copyright IBM Corp. 2005, 2015
  5. US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. /*
  8. Copyright (C) 2008 Cognos ULC, an IBM Company. All rights reserved.
  9. Cognos (R) is a trademark of Cognos ULC, (formerly Cognos Incorporated).
  10. */
  11. /* Generic fonts */
  12. body
  13. {
  14. font-size: 70% !important;
  15. }
  16. body, textarea, input, select
  17. {
  18. font-family: Tahoma, arial, geneva, helvetica, sans-serif;
  19. }
  20. .toolbarTextBold
  21. {
  22. font-family: Times New Roman;
  23. font-weight: bold;
  24. font-size: 10pt;
  25. padding-left:2px;
  26. }
  27. .toolbarTextItalic
  28. {
  29. font-family: Times New Roman;
  30. font-weight: bold;
  31. font-size: 10pt;
  32. font-style:italic;
  33. padding-left:2px;
  34. }
  35. .toolbarTextUnderline
  36. {
  37. font-family: Times New Roman;
  38. font-weight: bold;
  39. font-size: 10pt;
  40. text-decoration: underline;
  41. padding-left:2px;
  42. }
  43. /*
  44. Using the language specific font list below can help to workaround the following rendering issues on Browsers:
  45. 1. The Japanese Yen and Korean Won sign appears as the "backslash" when they are represented by the code point "U+005C".
  46. 2. Browser fails to supply a reasonable fall-back font support based on the font list in the "generic fonts" section.
  47. Also, these font lists will be useful for rendering some of the Unified Han ideographs to the form and shape which is
  48. typographically preferred by different Asian writing scripts.
  49. */
  50. /* For Japanese:
  51. body, td, span, p, textarea, input, select, a, div
  52. {
  53. font-family: 'MS UI Gothic', Tahoma, arial, geneva, helvetica, sans-serif;
  54. }
  55. */
  56. /* For Simplified Chinese:
  57. body, td, span, p, textarea, input, select, a, div
  58. {
  59. font-family: SimSun, Tahoma, arial, geneva, helvetica, sans-serif;
  60. }
  61. */
  62. /* For Traditional Chinese:
  63. body, td, span, p, textarea, input, select, a, div
  64. {
  65. font-family: MingLiU, Tahoma, arial, geneva, helvetica, sans-serif;
  66. }
  67. */
  68. /* For Korean:
  69. body, td, span, p, textarea, input, select, a, div
  70. {
  71. font-family: Gulim, Tahoma, arial, geneva, helvetica, sans-serif;
  72. }
  73. */