You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

146 lines
2.4 KiB

11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
11 years ago
  1. /*******************************
  2. Standard Example
  3. *******************************/
  4. /* font */
  5. @font-face {
  6. font-family: 'Neutraface';
  7. src:
  8. url("../fonts/neutraface-book.otf") format('opentype')
  9. ;
  10. font-weight: normal;
  11. font-style: normal;
  12. font-size-adjust: 0.448;
  13. }
  14. @font-face {
  15. font-family: 'Neutraface';
  16. src:
  17. url("../fonts/neutraface-bold.otf") format('opentype')
  18. ;
  19. font-weight: bold;
  20. font-style: normal;
  21. font-size-adjust: 0.448;
  22. }
  23. body#example {
  24. font-family: "Neutraface", "Helvetica Neue", "Arial", sans-serif;
  25. background: #FCFCFC url(images/bg.jpg) repeat;
  26. padding-bottom: 150px;
  27. }
  28. /* links */
  29. a {
  30. color: #009FDA;
  31. text-decoration: none;
  32. }
  33. a:hover {
  34. color: #00BAFF;
  35. }
  36. #example .sidr {
  37. font-weight: bold;
  38. }
  39. #example .sidr ul li ul {
  40. font-weight: normal;
  41. }
  42. #example .sidr ul li ul li a {
  43. font-family: "Neutraface", "Helvetica Neue", "Arial", sans-serif;
  44. font-size: 15px;
  45. color: #666666;
  46. }
  47. #example .sidr .active {
  48. background-color: #555555;
  49. }
  50. #example .sidr .active > a {
  51. color: #FFFFFF;
  52. -webkit-box-shadow: none;
  53. -moz-box-shadow: none;
  54. box-shadow: none;
  55. }
  56. /* text and headers */
  57. #example h1 {
  58. margin: 0px 0px 20px;
  59. padding: 50px 0px 5px;
  60. border-bottom: 1px solid #DDDDDD;
  61. }
  62. #example h1 .text {
  63. width: 800px;
  64. margin: 0px auto;
  65. }
  66. #example h1:first-child {
  67. margin-top: 0px;
  68. padding-top: 20px;
  69. }
  70. #example h2 {
  71. margin: 40px 0px 20px;
  72. }
  73. #example h3 {
  74. font-size: 20px;
  75. margin: 40px 0px 15px;
  76. }
  77. #example h4 {
  78. font-size: 16px;
  79. font-weight: normal;
  80. color: #555555;
  81. }
  82. #example pre {
  83. background-color: #F0F0F0;
  84. }
  85. #example code {
  86. background-color: #F0F0F0;
  87. border: 1px solid #DDDDDD;
  88. padding: 3px 5px;
  89. }
  90. #example pre code {
  91. border: none;
  92. padding: 0px;
  93. }
  94. #example p {
  95. margin: 10px 0px;
  96. }
  97. #example p > a {
  98. font-weight: bold;
  99. }
  100. /* lists */
  101. #example ol {
  102. list-style-position: inside;
  103. margin: 10px 0px 40px;
  104. padding: 0px;
  105. }
  106. #example ol li {
  107. list-style-type: decimal;
  108. margin: 0px 0px 10px;
  109. }
  110. #example .list {
  111. list-style-position: inside;
  112. margin: 10px 0px 40px;
  113. padding: 0px;
  114. }
  115. #example .list li {
  116. list-style-type: disc;
  117. margin: 0px 0px 10px;
  118. font-weight: bold;
  119. }
  120. /* content */
  121. #example .full.container {
  122. position: relative;
  123. width: 800px;
  124. }
  125. #example .container {
  126. width: 700px;
  127. margin: 0px auto;
  128. }
  129. #example .shortcuts {
  130. float: right;
  131. clear: both;
  132. }
  133. #example .menu.buttons {
  134. position: fixed;
  135. margin-top: 20px;
  136. margin-left: -8px;
  137. }