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 885 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. }