You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.7 KiB

5 years ago
5 years ago
5 years ago
5 years ago
  1. .dialog-header {
  2. background-color: mc('blue', '700');
  3. background-image: radial-gradient(ellipse at top, mc('blue', '500'), mc('blue', '700')),
  4. radial-gradient(ellipse at bottom, mc('blue', '800'), mc('blue', '700'));
  5. height: 60px;
  6. color: #FFF;
  7. display: flex;
  8. align-items: center;
  9. padding: 0 1rem;
  10. font-size: 1.2rem;
  11. &.is-red {
  12. background-color: mc('red', '700');
  13. background-image: radial-gradient(ellipse at top, mc('red', '500'), mc('red', '700')),
  14. radial-gradient(ellipse at bottom, mc('red', '800'), mc('red', '700'));
  15. }
  16. &.is-orange {
  17. background-color: mc('orange', '700');
  18. background-image: radial-gradient(ellipse at top, mc('orange', '600'), mc('orange', '800')),
  19. radial-gradient(ellipse at bottom, mc('orange', '900'), mc('orange', '800'));
  20. }
  21. &.is-indigo {
  22. background-color: mc('indigo', '700');
  23. background-image: radial-gradient(ellipse at top, mc('indigo', '500'), mc('indigo', '700')),
  24. radial-gradient(ellipse at bottom, mc('indigo', '800'), mc('indigo', '700'));
  25. }
  26. &.is-dark {
  27. background-color: mc('grey', '900');
  28. background-image: radial-gradient(ellipse at top, mc('grey', '800'), mc('grey', '900')),
  29. radial-gradient(ellipse at bottom, mc('grey', '800'), mc('grey', '900'));
  30. }
  31. &.is-teal {
  32. background-color: mc('teal', '700');
  33. background-image: radial-gradient(ellipse at top, mc('teal', '500'), mc('teal', '700')),
  34. radial-gradient(ellipse at bottom, mc('teal', '800'), mc('teal', '700'));
  35. }
  36. }
  37. .v-dialog--fullscreen {
  38. @include until($tablet) {
  39. padding-top: 56px;
  40. }
  41. }