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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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('tomorrow.css');
  3. html,
  4. body {
  5. background: #fff;
  6. color: #000;
  7. }
  8. .sideaffix {
  9. overflow: visible;
  10. }
  11. /* links */
  12. a:active, a:hover, a:visited {
  13. color: #0078d7;
  14. }
  15. a {
  16. color: #0050c5;
  17. cursor: pointer;
  18. text-decoration: none;
  19. word-wrap: break-word;
  20. }
  21. /* alert */
  22. .alert-info {
  23. color: #165e82;
  24. background-color: #c1e0ef;
  25. border-color: #8cbfd8;
  26. }
  27. .alert-warning {
  28. color: #825e16;
  29. background-color: #efe0c1;
  30. border-color: #d8bf8c;
  31. }
  32. .alert-danger {
  33. color: #821616;
  34. background-color: #efc1c1;
  35. border-color: #d88c8c;
  36. }
  37. /* code */
  38. code {
  39. color: #9c3a3f;
  40. background-color: #ececec;
  41. border-radius: 4px;
  42. padding: 3px 7px;
  43. }
  44. /* table */
  45. .table-striped>tbody>tr:nth-of-type(odd) {
  46. color: #333333;
  47. background-color: #d3d3d3
  48. }
  49. tbody>tr {
  50. color: #424242;
  51. background-color: #c0c0c0
  52. }
  53. .table>tbody+tbody {
  54. border-top: 2px solid rgb(173, 173, 173)
  55. }
  56. /* select */
  57. select {
  58. background-color: #fcfcfc;
  59. border-color: #aeb1b5;
  60. }
  61. /*
  62. Following code regarding collapse container are fetched
  63. or modified from the Materialize project.
  64. The MIT License (MIT)
  65. Copyright (c) 2014-2018 Materialize
  66. https://github.com/Dogfalo/materialize
  67. */
  68. /* all collapse container */
  69. .collapse-container.last-modified {
  70. -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);
  71. 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);
  72. border-top: 1px solid #ddd;
  73. border-right: 1px solid #ddd;
  74. border-left: 1px solid #ddd;
  75. }
  76. /* header */
  77. .collapse-container.last-modified>:nth-child(odd) {
  78. background-color: #fff;
  79. border-bottom: 1px solid #ddd;
  80. }
  81. /* body */
  82. .collapse-container.last-modified>:nth-child(even) {
  83. border-bottom: 1px solid #ddd;
  84. }
  85. span.arrow-d{
  86. border-top: 5px solid black
  87. }
  88. span.arrow-r{
  89. border-left: 5px solid black
  90. }