163 lines
1.9 KiB

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