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.

81 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: 50px 0 15px 0;
  21. color: mc('grey', '700');
  22. h2 {
  23. margin: 0;
  24. }
  25. }
  26. i.icon-loader {
  27. display: inline-block;
  28. color: mc('indigo', '500')
  29. }
  30. i.icon-check {
  31. color: mc('green', '500')
  32. }
  33. i.icon-square-cross {
  34. color: mc('red', '500')
  35. }
  36. i.icon-warning-outline {
  37. color: mc('orange', '500')
  38. }
  39. .tst-welcome-leave-active, .tst-welcome-enter-active {
  40. transition: all .5s;
  41. overflow-y: hidden;
  42. }
  43. .tst-welcome-leave, .tst-welcome-enter-to {
  44. opacity: 1;
  45. max-height: 200px;
  46. }
  47. .tst-welcome-leave-to, .tst-welcome-enter {
  48. opacity: 0;
  49. max-height: 0;
  50. padding-top: 0;
  51. }
  52. .progress-bar {
  53. width: 150px;
  54. height: 10px;
  55. background-color: mc('indigo', '50');
  56. border:1px solid mc('indigo', '100');
  57. border-radius: 3px;
  58. position: absolute;
  59. left: 15px;
  60. top: 21px;
  61. padding: 1px;
  62. > div {
  63. width: 5px;
  64. height: 6px;
  65. background-color: mc('indigo', '200');
  66. border-radius: 2px;
  67. transition: all 1s ease;
  68. }
  69. }