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.8 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. }
  44. /*
  45. Following code regarding collapse container are fetched
  46. or modified from the Materialize project.
  47. The MIT License (MIT)
  48. Copyright (c) 2014-2018 Materialize
  49. https://github.com/Dogfalo/materialize
  50. */
  51. /* all collapse container */
  52. .collapse-container.last-modified {
  53. -webkit-box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  54. box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
  55. border-top: 1px solid #ddd;
  56. border-right: 1px solid #ddd;
  57. border-left: 1px solid #ddd;
  58. }
  59. /* header */
  60. .collapse-container.last-modified>:nth-child(odd) {
  61. background-color: #fff;
  62. border-bottom: 1px solid #ddd;
  63. }
  64. /* body */
  65. .collapse-container.last-modified>:nth-child(even) {
  66. border-bottom: 1px solid #ddd;
  67. }
  68. span.arrow-d{
  69. border-top: 5px solid black
  70. }
  71. span.arrow-r{
  72. border-left: 5px solid black
  73. }