Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2019
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.25 KB | None | 0 0
  1. @import '~vuetify/src/styles/styles.sass';
  2. $color-pack: false;
  3. $body-font-family: 'Geometria Regular', 'Segoe UI', Arial, Helvetica, sans-serif;
  4. $btn-letter-spacing: normal;
  5.  
  6. $tabs-bar-height: 40px;
  7. $tabs-icons-and-text-bar-height: 40px;
  8. $tabs-item-align-with-title-padding: 60px;
  9. $tabs-item-min-width: 30px;
  10. $tabs-item-man-width: 300px;
  11. $tabs-item-padding: 0px;
  12. $tabs-item-hover-opacity: 1;
  13. $tabs-item-focus-opacity: 1;
  14. $tabs-slider-height: 4px;
  15. $tabs-item-vertical-height: $tabs-bar-height;
  16. $tabs-item-vertical-icons-and-text-height: $tabs-icons-and-text-bar-height;
  17.  
  18. $grid-breakpoints: (
  19. 'xs': 320px,
  20. 'sm': 320px,
  21. 'md': 768px,
  22. 'lg': 1200px,
  23. 'xl': 1200px,
  24. );
  25. $grid-gutter: 10px;
  26. $grid-columns: 12;
  27.  
  28. $icon-size: unset;
  29.  
  30. $grid-gutters: (
  31. 'xs': $grid-gutter,
  32. 'sm': $grid-gutter,
  33. 'md': $grid-gutter,
  34. 'lg': $grid-gutter,
  35. 'xl': $grid-gutter,
  36. );
  37.  
  38. $display-breakpoints: (
  39. 'print-only': 'only print',
  40. 'screen-only': 'only screen',
  41. 'xs-only': 'only screen and (max-width: #{map-get($grid-breakpoints, 'sm') - 1})',
  42. 'sm-only': 'only screen and (min-width: #{map-get($grid-breakpoints, 'sm')}) and (max-width: #{map-get($grid-breakpoints, 'md') - 1})',
  43. 'sm-and-down': 'only screen and (max-width: #{map-get($grid-breakpoints, 'md') - 1})',
  44. 'sm-and-up': 'only screen and (min-width: #{map-get($grid-breakpoints, 'sm')})',
  45. 'md-only': 'only screen and (min-width: #{map-get($grid-breakpoints, 'md')}) and (max-width: #{map-get($grid-breakpoints, 'lg') - 1})',
  46. 'md-and-down': 'only screen and (max-width: #{map-get($grid-breakpoints, 'lg') - 1})',
  47. 'md-and-up': 'only screen and (min-width: #{map-get($grid-breakpoints, 'md')})',
  48. 'lg-only': 'only screen and (min-width: #{map-get($grid-breakpoints, 'lg')}) and (max-width: #{map-get($grid-breakpoints, 'xl') - 1})',
  49. 'lg-and-down': 'only screen and (max-width: #{map-get($grid-breakpoints, 'xl') - 1})',
  50. 'lg-and-up': 'only screen and (min-width: #{map-get($grid-breakpoints, 'lg')})',
  51. 'xl-only': 'only screen and (min-width: #{map-get($grid-breakpoints, 'xl')})'
  52. );
  53.  
  54. $container-max-widths: (
  55. 'xs': 320px,
  56. 'sm': 320px,
  57. 'md': 768px,
  58. 'lg': 1230px,
  59. 'xl': 1230px,
  60. );
  61. $material-light: map-merge(
  62. $material-light,
  63. (
  64. 'background': white,
  65. )
  66. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement