You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

148 lines
1.8 KiB

  1. #page-type-view > section {
  2. transition: background-color .5s ease;
  3. &.blurred {
  4. background-color: $grey-lighter;
  5. }
  6. }
  7. .sd-menus {
  8. width: 300px;
  9. }
  10. .section.is-small {
  11. padding: 20px 20px;
  12. }
  13. .mkcontent {
  14. h1 {
  15. border-bottom: 1px dotted $grey-light;
  16. padding-bottom: 4px;
  17. font-weight: 400;
  18. color: desaturate(darken($purple, 15%), 10%);
  19. }
  20. a.toc-anchor {
  21. font-size: 80%;
  22. color: $purple;
  23. border-bottom: none;
  24. &:visited {
  25. color: $purple !important;
  26. }
  27. }
  28. a.external-link {
  29. position: relative;
  30. padding-left: 20px;
  31. &:before {
  32. content: "\f08e";
  33. font-family: FontAwesome;
  34. font-style: normal;
  35. font-weight: normal;
  36. text-decoration: inherit;
  37. color: $grey;
  38. font-size: 14px;
  39. position: absolute;
  40. top: 0;
  41. left: 0;
  42. }
  43. }
  44. pre {
  45. padding: 0;
  46. > code {
  47. box-shadow: inset 0 0 5px 0 $grey-light;
  48. border-radius: 5px;
  49. }
  50. }
  51. pre + p {
  52. padding-top: 1em;
  53. }
  54. img.right {
  55. float:right;
  56. }
  57. img.pagelogo {
  58. float: right;
  59. margin-top: -50px;
  60. max-width: 200px;
  61. }
  62. strong {
  63. color: $grey-dark;
  64. }
  65. .twa {
  66. font-size: 120%;
  67. }
  68. }
  69. .content a:not(.button):visited {
  70. color: $turquoise;
  71. font-weight: 500;
  72. }
  73. code {
  74. font-weight: 500;
  75. color: $purple;
  76. }
  77. p code {
  78. padding: 2px 5px;
  79. border-radius: 4px;
  80. }
  81. .modal {
  82. align-items: flex-start;
  83. }
  84. .modal-background {
  85. animation: 0.4s ease fadeIn;
  86. }
  87. .modal-content {
  88. animation: 0.4s ease slideInDown;
  89. }
  90. .card-header {
  91. background-color: $turquoise;
  92. &.is-warning {
  93. background-color: $orange;
  94. }
  95. &.is-danger {
  96. background-color: $red;
  97. }
  98. &.is-info {
  99. background-color: $purple;
  100. }
  101. }
  102. .card-header-title {
  103. color: #FFF;
  104. font-weight: 400;
  105. font-size: 16px;
  106. padding: 10px 20px;
  107. }
  108. .modal-content .card-footer-item {
  109. font-weight: 500;
  110. }
  111. .modal-content .card-footer-item.featured {
  112. animation: flash 4s ease 0 infinite;
  113. }