style.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. body {
  2. font-family: "Lora", "Helvetica Neue", Helvetica, Arial, sans-serif;
  3. }
  4. h1 {
  5. font-size: 50px;
  6. }
  7. h4 {
  8. font-weight: bold;
  9. }
  10. h5 {
  11. font-size: 16px;
  12. font-weight: bold;
  13. }
  14. .toctree-l1 > a {
  15. font-size: 110%;
  16. font-weight: bold;
  17. }
  18. .navbar-brand {
  19. padding-top: 7px;
  20. }
  21. .navbar-brand img {
  22. float: left;
  23. margin-right: 0.5em;
  24. }
  25. /*
  26. Copyright (c) 2012 Terrence Ryan
  27. Permission is hereby granted, free of charge, to any person obtaining a copy of this
  28. software and associated documentation files (the "Software"), to deal in the Software
  29. without restriction, including without limitation the rights to use, copy, modify,
  30. merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
  31. permit persons to whom the Software is furnished to do so, subject to the following
  32. conditions:
  33. The above copyright notice and this permission notice shall be included in all copies
  34. or substantial portions of the Software.
  35. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
  36. INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
  37. PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  38. LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
  39. TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
  40. OR OTHER DEALINGS IN THE SOFTWARE.
  41. */
  42. #banner {
  43. height: 149px;
  44. width: 149px;
  45. overflow:hidden;
  46. padding: 0;
  47. margin: 0;
  48. float: right;
  49. }
  50. #banner a {
  51. display: block;
  52. width: 235px;
  53. font-size: 14px;
  54. font-family: Frutiger, "Frutiger Linotype", Univers, Calibri, "Gill Sans", "Gill Sans MT",
  55. "Myriad Pro", Myriad, "DejaVu Sans Condensed", "Liberation Sans", "Nimbus Sans L", Tahoma,
  56. Geneva, "Helvetica Neue", Helvetica, Arial, sans serif;
  57. background-color: #333;
  58. color: #FFF;
  59. word-spacing: 2px;
  60. text-decoration: none;
  61. padding: 5px 15px 5px 25px;
  62. position:relative;
  63. left: 20px;
  64. top: -33px;
  65. text-align: center;
  66. -moz-transform-origin: 0 0 ;
  67. -moz-transform:rotate(45deg);
  68. -moz-box-shadow: 1px 1px 5px 1px #666;
  69. -webkit-transform-origin: 0 0 ;
  70. -webkit-transform:rotate(45deg);
  71. -webkit-box-shadow: 1px 1px 5px 1px #666;
  72. -ms-transform-origin: 0 0 ;
  73. -ms-transform:rotate(45deg);
  74. -ms-box-shadow: 1px 1px 5px 1px #666;
  75. transform-origin: 0 0 ;
  76. transform:rotate(45deg);
  77. box-shadow: 1px 1px 5px 1px #666;
  78. background-image: linear-gradient(bottom, #000000 3%, #666666 5%, #000000 7%, #000000 93%, #666666 95%, #000000 97%);
  79. background-image: -o-linear-gradient(bottom, #000000 3%, #666666 5%, #000000 7%, #000000 93%, #666666 95%, #000000 97%);
  80. background-image: -moz-linear-gradient(bottom, #000000 3%, #666666 5%, #000000 7%, #000000 93%, #666666 95%, #000000 97%);
  81. background-image: -webkit-linear-gradient(bottom, #000000 3%, #666666 5%, #000000 7%, #000000 93%, #666666 95%, #000000 97%);
  82. background-image: -ms-linear-gradient(bottom, #000000 3%, #666666 5%, #000000 7%, #000000 93%, #666666 95%, #000000 97%);
  83. background-image: -webkit-gradient(
  84. linear,
  85. left bottom,
  86. left top,
  87. color-stop(0.03, #000000),
  88. color-stop(0.05, #666666),
  89. color-stop(0.07, #000000),
  90. color-stop(0.93, #000000),
  91. color-stop(0.95, #666666),
  92. color-stop(0.97, #000000)
  93. );
  94. }