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.

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