vpp.scss 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .app-container {
  2. width: 100%;
  3. height: calc(100vh);
  4. /*background-color: #101C38;*/
  5. background: url(../../assets/images/bg/bg1.png) 100% no-repeat;
  6. background-size: 100% 100%;
  7. color: white;
  8. }
  9. .topBanner {
  10. width: 100%;
  11. height: 7%;
  12. background: url(../../assets/images/bg/bgBanner.png) -2px -1px no-repeat;
  13. background-size: 100% 100%;
  14. display: flex;
  15. justify-content: center;
  16. }
  17. .topLogo {
  18. position: absolute;
  19. width: 270px;
  20. height: 66px;
  21. left: 2%;
  22. top: 0;
  23. background: url(../../assets/images/logo.png) -2px -1px no-repeat;
  24. z-index: auto;
  25. }
  26. .main-container {
  27. width: 100%;
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. }
  32. .main-card {
  33. margin-top: .5%;
  34. width: 98%;
  35. height: calc(30vh);
  36. border-width: 0px;
  37. border-style: dashed;
  38. border-color: aqua;
  39. display: flex;
  40. justify-content: space-around;
  41. }
  42. .barBox {
  43. height: 100%;
  44. width: 100%;
  45. display: flex;
  46. flex-direction: column;
  47. background: url(../../assets/images/bg/bgBar.png) -2px -1px no-repeat;
  48. margin-right: 1%;
  49. }
  50. .barTitle {
  51. display: flex;
  52. align-items: center;
  53. margin-left: 10%;
  54. margin-top: 0.5%;
  55. font-size: 18px;
  56. font-style: italic;
  57. font-weight: bold;
  58. text-shadow: 0 0 5px #fff, 0 1px 2px rgba(0, 0, 0, 1);
  59. }