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

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /* Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License.txt in the project root for license information. */
  2. html,
  3. body {
  4. background: #fff;
  5. color: #000;
  6. }
  7. .sideaffix {
  8. overflow: visible;
  9. }
  10. /* links */
  11. a:active, a:hover, a:visited {
  12. color: #0078d7;
  13. }
  14. a {
  15. color: #0050c5;
  16. cursor: pointer;
  17. text-decoration: none;
  18. word-wrap: break-word;
  19. }
  20. /* code */
  21. code {
  22. color: #3b5269;
  23. background-color: #ececec;
  24. border-radius: 4px;
  25. padding: 3px 7px;
  26. }
  27. /* table */
  28. .table-striped>tbody>tr:nth-of-type(odd) {
  29. color: #333333;
  30. background-color: #d3d3d3
  31. }
  32. tbody>tr {
  33. color: #424242;
  34. background-color: #c0c0c0
  35. }
  36. .table>tbody+tbody {
  37. border-top: 2px solid rgb(173, 173, 173)
  38. }
  39. /* select */
  40. select {
  41. background-color: #fcfcfc;
  42. border-color: #aeb1b5;
  43. }