custom.css 728 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* your custom css */
  2. @media only screen and (min-device-width: 360px) and (max-device-width: 736px) {
  3. }
  4. @media only screen and (min-width: 1024px) {
  5. }
  6. @media only screen and (max-width: 1023px) {
  7. }
  8. @media only screen and (min-width: 1400px) {
  9. }
  10. @media only screen and (min-width: 1500px) {
  11. }
  12. a, a:hover {
  13. color: #4f62be;
  14. text-decoration: none;
  15. }
  16. ul.toc-headings > li {
  17. padding-bottom: 0px;
  18. }
  19. .toc-headings > li > a {
  20. display: block;
  21. }
  22. .toc-headings > li > a.active {
  23. font-weight: bold;
  24. }
  25. .hljs {
  26. border: 1px solid #ccc;
  27. }
  28. h3 > code {
  29. background-color: transparent;
  30. padding: 0;
  31. font-size: 100%;
  32. }
  33. .toc-headings > li > a > code {
  34. background-color: transparent;
  35. padding: 0;
  36. }