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.

85 lines
1.4 KiB

  1. @charset "utf-8";
  2. $primary: 'indigo';
  3. @import "base/variables";
  4. @import "base/colors";
  5. @import "base/reset";
  6. @import "base/mixins";
  7. @import "base/fonts";
  8. @import "base/base";
  9. @import "libs/animate";
  10. @import 'components/button';
  11. @import 'components/footer';
  12. @import 'components/form';
  13. @import 'components/grid';
  14. @import 'components/modal';
  15. @import 'components/nav';
  16. @import 'components/panel';
  17. @import 'components/typography';
  18. .welcome {
  19. text-align: center;
  20. padding: 25px 0 0;
  21. color: mc('grey', '700');
  22. h1 {
  23. margin-top: 5px;
  24. }
  25. h2 {
  26. margin: 0;
  27. }
  28. }
  29. i.icon-loader {
  30. display: inline-block;
  31. color: mc('indigo', '500')
  32. }
  33. i.icon-check {
  34. color: mc('green', '500')
  35. }
  36. i.icon-square-cross {
  37. color: mc('red', '500')
  38. }
  39. i.icon-warning-outline {
  40. color: mc('orange', '500')
  41. }
  42. .tst-welcome-leave-active, .tst-welcome-enter-active {
  43. transition: all .5s;
  44. overflow-y: hidden;
  45. }
  46. .tst-welcome-leave, .tst-welcome-enter-to {
  47. opacity: 1;
  48. max-height: 200px;
  49. }
  50. .tst-welcome-leave-to, .tst-welcome-enter {
  51. opacity: 0;
  52. max-height: 0;
  53. padding-top: 0;
  54. }
  55. .progress-bar {
  56. width: 150px;
  57. height: 10px;
  58. background-color: mc('indigo', '50');
  59. border:1px solid mc('indigo', '100');
  60. border-radius: 3px;
  61. position: absolute;
  62. left: 15px;
  63. top: 21px;
  64. padding: 1px;
  65. > div {
  66. width: 5px;
  67. height: 6px;
  68. background-color: mc('indigo', '200');
  69. border-radius: 2px;
  70. transition: all 1s ease;
  71. }
  72. }