web.css 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /* web.css
  2. Copyright (C) 2006 g10 Code GmbH
  3. This file is part of Scute[1].
  4. [1] Derived from the RSA Security Inc. PKCS #11 Cryptographic Token
  5. Interface (Cryptoki).
  6. Scute is free software; you can redistribute it and/or modify it
  7. under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2 of the License, or
  9. (at your option) any later version.
  10. Scute is distributed in the hope that it will be useful, but
  11. WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  13. General Public License for more details.
  14. You should have received a copy of the GNU General Public License
  15. along with Scute; if not, write to the Free Software Foundation,
  16. Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
  17. In addition, as a special exception, g10 Code GmbH gives permission
  18. to link this library: with the Mozilla Foundation's code for
  19. Mozilla (or with modified versions of it that use the same license
  20. as the "Mozilla" code), and distribute the linked executables. You
  21. must obey the GNU General Public License in all respects for all of
  22. the code used other than "Mozilla". If you modify this file, you
  23. may extend this exception to your version of the file, but you are
  24. not obligated to do so. If you do not wish to do so, delete this
  25. exception statement from your version. */
  26. /* Note that the dimensions here specify the view-port size, not the
  27. image size, which is specified in the SVG file itself. */
  28. body { font-family: "sans-serif";
  29. background-image: url("scute-border.jpg");
  30. background-repeat: repeat-y;
  31. margin: 0em;
  32. }
  33. /* Same constant also below for div#main. FIXME: Can be fixed by
  34. using another div for the body. */
  35. div#toc { margin-left: 150px; }
  36. div#toc object { width: 310px;
  37. height: 110px;
  38. float: left;
  39. margin-left: -45px }
  40. div#toc h1 { display: none; }
  41. div#toc ul { float: left;
  42. padding: 0em; }
  43. div#toc ul li { font-size: small; float: left;
  44. font-weight: bold;
  45. border-style: none none none solid;
  46. border-width: 3px 0px 3px 3px;
  47. padding: 0.6em 0em 0.6em 0.6em;
  48. margin: 0.6em 0em 0.6em 0.6em;
  49. text-align: center;
  50. list-style-type: none;
  51. }
  52. div#toc ul li:first-child { border-width: 3px 0px 3px 0px; }
  53. div#toc ul li a:link { text-decoration: none; color: black }
  54. div#toc ul li a:visited { text-decoration: none; color: black }
  55. div#toc ul li a:hover { text-decoration: underline; color: black }
  56. div#toc ul li a:active { text-decoration: underline; color: white;
  57. background-color: black; }
  58. div#main { clear: left;
  59. margin-left: 150px;
  60. margin-right: 15%; }
  61. div#main h1 { padding-top: 1em; }
  62. div#main table > caption { display: none; }
  63. div#main table { border-style: none none none solid;
  64. border-width: 3px;
  65. margin: 0.6em;
  66. text-align: left;
  67. }
  68. div#main table > tr > td,th { padding-left: 0.6em; }