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

light.css 1.6 kB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. /* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License.txt in the project root for license information. */
  2. @import url('https://fonts.googleapis.com/css?family=Titillium+Web');
  3. html,
  4. body {
  5. font-family: 'Titillium Web', 'Segoe UI', Tahoma, Helvetica, sans-serif;
  6. height: 100%;
  7. color: #000;
  8. background: #fff;
  9. font-size: 15px;
  10. }
  11. header .navbar {
  12. border-width: 0 0 0px;
  13. border-radius: 0;
  14. }
  15. .sideaffix{
  16. overflow: visible;
  17. }
  18. body .toc{
  19. background-color: inherit;
  20. overflow: visible;
  21. }
  22. /* code */
  23. code {
  24. color:#222f3d;
  25. background-color: #f9f9f9;
  26. border-radius:4px;
  27. padding: 3px 7px;
  28. }
  29. /* table */
  30. .table-striped>tbody>tr:nth-of-type(odd) {
  31. color:#333333;
  32. background-color: #d3d3d3
  33. }
  34. tbody>tr {
  35. color:#424242;
  36. background-color: #c0c0c0
  37. }
  38. .table>tbody+tbody {
  39. border-top:2px solid rgb(173, 173, 173)
  40. }
  41. /* select */
  42. select {
  43. display: inline-block;
  44. overflow: auto;
  45. -webkit-box-sizing: border-box;
  46. box-sizing: border-box;
  47. margin: 0;
  48. padding: 0 30px 0 6px;
  49. vertical-align: middle;
  50. height: 28px;
  51. border: 1px solid #e3e3e3;
  52. line-height: 16px;
  53. outline: 0;
  54. text-overflow: ellipsis;
  55. -webkit-appearance: none;
  56. -moz-appearance: none;
  57. cursor: pointer;
  58. background-image: linear-gradient(45deg,transparent 50%,#707070 0),linear-gradient(135deg,#707070 50%,transparent 0);
  59. background-position: calc(100% - 13px) 11px,calc(100% - 8px) 11px;
  60. background-size: 5px 5px,5px 6px;
  61. background-repeat: no-repeat;
  62. background-color: #fcfcfc;
  63. border-color: #aeb1b5;
  64. }