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 2.2 kB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  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. /* alert */
  21. .alert-info {
  22. color: hsl(200, 70%, 30%);
  23. background-color: hsl(200, 60%, 85%);
  24. border-color: hsl(200, 50%, 70%);
  25. }
  26. .alert-danger {
  27. color: hsl(0, 70%, 30%);
  28. background-color: hsl(0, 60%, 85%);
  29. border-color: hsl(0, 50%, 70%);
  30. }
  31. .alert-warning {
  32. color: hsl(40, 70%, 30%);
  33. background-color: hsl(40, 60%, 85%);
  34. border-color: hsl(40, 50%, 70%);
  35. }
  36. /* code */
  37. code {
  38. color: #9c3a3f;
  39. background-color: #ececec;
  40. border-radius: 4px;
  41. padding: 3px 7px;
  42. }
  43. /* table */
  44. .table-striped>tbody>tr:nth-of-type(odd) {
  45. color: #333333;
  46. background-color: #d3d3d3
  47. }
  48. tbody>tr {
  49. color: #424242;
  50. background-color: #c0c0c0
  51. }
  52. .table>tbody+tbody {
  53. border-top: 2px solid rgb(173, 173, 173)
  54. }
  55. /* select */
  56. select {
  57. background-color: #fcfcfc;
  58. border-color: #aeb1b5;
  59. }
  60. /*
  61. Following code regarding collapse container are fetched
  62. or modified from the Materialize project.
  63. The MIT License (MIT)
  64. Copyright (c) 2014-2018 Materialize
  65. https://github.com/Dogfalo/materialize
  66. */
  67. /* all collapse container */
  68. .collapse-container.last-modified {
  69. -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);
  70. 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);
  71. border-top: 1px solid #ddd;
  72. border-right: 1px solid #ddd;
  73. border-left: 1px solid #ddd;
  74. }
  75. /* header */
  76. .collapse-container.last-modified>:nth-child(odd) {
  77. background-color: #fff;
  78. border-bottom: 1px solid #ddd;
  79. }
  80. /* body */
  81. .collapse-container.last-modified>:nth-child(even) {
  82. border-bottom: 1px solid #ddd;
  83. }
  84. span.arrow-d{
  85. border-top: 5px solid black
  86. }
  87. span.arrow-r{
  88. border-left: 5px solid black
  89. }