_content.scss 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. .sd-menus {
  2. width: 300px;
  3. }
  4. .mkcontent {
  5. h1 {
  6. border-bottom: 1px dotted $grey-light;
  7. padding-bottom: 4px;
  8. font-weight: 400;
  9. color: $grey-dark;
  10. }
  11. a.toc-anchor {
  12. font-size: 80%;
  13. color: $purple;
  14. border-bottom: none;
  15. &:visited {
  16. color: $purple !important;
  17. }
  18. }
  19. .hljs {
  20. padding: 0;
  21. border-radius: 3px;
  22. > code {
  23. box-shadow: inset 0 0 5px 0 $grey-light;
  24. }
  25. }
  26. pre + p {
  27. padding-top: 1em;
  28. }
  29. img.right {
  30. float:right;
  31. }
  32. img.pagelogo {
  33. float: right;
  34. margin-top: -50px;
  35. max-width: 200px;
  36. }
  37. strong {
  38. color: $grey-dark;
  39. }
  40. }
  41. .content a:not(.button):visited {
  42. color: $turquoise;
  43. font-weight: 500;
  44. }
  45. code {
  46. font-weight: 500;
  47. color: $purple;
  48. }
  49. p code {
  50. padding: 2px 5px;
  51. border-radius: 4px;
  52. }
  53. .modal {
  54. align-items: flex-start;
  55. }
  56. .modal-background {
  57. animation: 0.4s ease fadeIn;
  58. }
  59. .modal-content {
  60. animation: 0.4s ease slideInDown;
  61. }
  62. .card-header {
  63. background-color: $turquoise;
  64. }
  65. .card-header-title {
  66. color: #FFF;
  67. font-weight: 400;
  68. font-size: 16px;
  69. padding: 10px 20px;
  70. }
  71. .modal-content .card-footer-item {
  72. font-weight: 500;
  73. }