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.
 
 
 

55 lines
801 B

  1. html,
  2. body,
  3. #app {
  4. height: 100%;
  5. margin: 0;
  6. padding: 0;
  7. }
  8. .avue-home {
  9. background-color: #303133;
  10. height: 100%;
  11. display: flex;
  12. flex-direction: column;
  13. }
  14. .avue-home__main {
  15. user-select: none;
  16. width: 100%;
  17. flex-grow: 1;
  18. display: flex;
  19. justify-content: center;
  20. align-items: center;
  21. flex-direction: column;
  22. }
  23. .avue-home__footer {
  24. width: 100%;
  25. flex-grow: 0;
  26. text-align: center;
  27. padding: 1em 0;
  28. }
  29. .avue-home__footer > a {
  30. font-size: 12px;
  31. color: #ABABAB;
  32. text-decoration: none;
  33. }
  34. .avue-home__loading {
  35. height: 32px;
  36. width: 32px;
  37. margin-bottom: 20px;
  38. }
  39. .avue-home__title {
  40. color: #FFF;
  41. font-size: 14px;
  42. margin-bottom: 10px;
  43. }
  44. .avue-home__sub-title {
  45. color: #ABABAB;
  46. font-size: 12px;
  47. }