CodeBlock.module.scss 464 B

12345678910111213141516171819202122
  1. @use '~/styles/variables' as var;
  2. @use '~/styles/bootstrap/init' as bs;
  3. .code-inline {
  4. padding: 2px 4px;
  5. font-family: var.$font-family-monospace-not-strictly;
  6. border: 1px solid;
  7. border-radius: bs.$border-radius;
  8. }
  9. .code-highlighted-title {
  10. position: absolute;
  11. top: 0;
  12. right: 0.5em;
  13. padding: 0 4px;
  14. font-style: normal;
  15. font-weight: bold;
  16. color: bs.$gray-900;
  17. background: bs.$gray-300;
  18. border-radius: bs.$border-radius;
  19. opacity: 0.6;
  20. }