vagrant.css 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. .navbar-default .navbar-brand {
  2. background: white;
  3. color: #8d9ba8;
  4. }
  5. .menu .list {
  6. background: #0c5593;
  7. }
  8. .menu .chapter {
  9. padding: 0 20px;
  10. }
  11. .menu ul.list li a[data-type='chapter-link'],
  12. .menu ul.list li.chapter .simple {
  13. color: white;
  14. text-transform: uppercase;
  15. border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  16. }
  17. .content h1,
  18. .content h2,
  19. .content h3,
  20. .content h4,
  21. .content h5 {
  22. color: #292e31;
  23. font-weight: normal;
  24. }
  25. .content {
  26. color: #4c555a;
  27. }
  28. a {
  29. color: #0094bf;
  30. text-decoration: underline;
  31. }
  32. a:hover {
  33. color: #f1362f;
  34. }
  35. .menu ul.list li.title {
  36. background: white;
  37. padding-bottom: 5px;
  38. }
  39. .menu ul.list li:nth-child(2) {
  40. margin-top: 0;
  41. }
  42. .menu ul.list li:nth-last-child(2) {
  43. background: none;
  44. }
  45. .menu ul.list li.title a {
  46. padding: 10px 15px;
  47. }
  48. .menu ul.list li.title a,
  49. .navbar a {
  50. color: #8d9ba8;
  51. text-decoration: none;
  52. font-size: 16px;
  53. font-weight: 300;
  54. }
  55. .menu ul.list li a {
  56. color: white;
  57. padding: 10px;
  58. font-weight: 300;
  59. text-decoration: none;
  60. }
  61. .menu ul.list li a.active {
  62. color: white;
  63. font-weight: bold;
  64. }
  65. .copyright {
  66. color: white;
  67. background: #000;
  68. }
  69. code {
  70. box-sizing: border-box;
  71. display: inline-block;
  72. padding: 0 5px;
  73. background: rgba(0, 148, 191, 0.1);
  74. border-radius: 3px;
  75. color: #0094bf;
  76. font-size: 13px;
  77. line-height: 20px;
  78. }
  79. pre {
  80. margin: 0;
  81. padding: 12px 12px;
  82. background: rgba(238, 238, 238, 0.35);
  83. border-radius: 3px;
  84. font-size: 13px;
  85. line-height: 1.5em;
  86. font-weight: 500;
  87. }
  88. .dark body {
  89. color: #fafafa;
  90. }
  91. .dark .content h1,
  92. .dark .content h2,
  93. .dark .content h3,
  94. .dark .content h4,
  95. .dark .content h5 {
  96. color: #fafafa;
  97. }
  98. .dark code {
  99. background: none;
  100. }
  101. .dark .content {
  102. color: #fafafa;
  103. }
  104. .dark .menu ul.list li.title a,
  105. .dark .navbar a {
  106. color: #8d9ba8;
  107. }
  108. .dark .menu ul.list li a {
  109. color: #fafafa;
  110. }