main.scss 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. ---
  2. # Only the main Sass file needs front matter (the dashes are enough)
  3. ---
  4. @charset "utf-8";
  5. @import "minimal-mistakes/skins/{{ site.minimal_mistakes_skin | default: 'default' }}"; // skin
  6. @import "minimal-mistakes"; // main partials
  7. @import "button-group"; // main partials
  8. //
  9. // DeepSpeed customizations
  10. //
  11. .site-title {
  12. display: -webkit-box;
  13. display: -ms-flexbox;
  14. display: flex;
  15. -ms-flex-item-align: center;
  16. align-self: center;
  17. font-weight: bold;
  18. font-size: $type-size-2; // DeepSpeed: increase size
  19. }
  20. .toc {
  21. font-family: $sans-serif-narrow;
  22. color: $gray;
  23. background-color: $background-color;
  24. border: 1px solid $border-color;
  25. border-radius: $border-radius;
  26. -webkit-box-shadow: $box-shadow;
  27. box-shadow: $box-shadow;
  28. //position: fixed;
  29. .nav__title {
  30. color: #fff;
  31. font-size: $type-size-6;
  32. background: $primary-color;
  33. border-top-left-radius: $border-radius;
  34. border-top-right-radius: $border-radius;
  35. }
  36. // Scrollspy marks toc items as .active when they are in focus
  37. .active a {
  38. @include yiq-contrasted($active-color);
  39. }
  40. }
  41. ul.tag-box li {
  42. display: inline-block;
  43. list-style: none;
  44. list-style-image: none;
  45. margin-bottom: 10px;
  46. text-transform: capitalize;
  47. }
  48. ul.tag-box li a {
  49. background: #e6e6e6;
  50. padding: 2px 8px;
  51. border-radius: 3px;
  52. color: #0092ca;
  53. text-transform: capitalize;
  54. font-weight: bold;
  55. }
  56. ul.tag-box li span.size {
  57. font-weight: bold;
  58. }
  59. .site-logo img { max-height: 200%; width: auto; }