_utility.scss 419 B

12345678910111213141516171819202122232425
  1. $code-font-size : 0.9rem;
  2. @mixin selector($foreground-color, $background-color) {
  3. ::selection {
  4. background : $background-color;
  5. color : $foreground-color;
  6. }
  7. }
  8. @mixin user-select($value) {
  9. user-select : $value;
  10. }
  11. @mixin rounded-borders() {
  12. border-radius : 5px;
  13. }
  14. @mixin top-rounded-borders() {
  15. border-radius : 5px 5px 0 0;
  16. }
  17. @mixin bottom-rounded-borders() {
  18. border-radius : 0 0 5px 5px;
  19. }