| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- .A0base {
- :global {
- .initPic {
- position: absolute;
- width: 100%;
- height: 100%;
- left: 50%;
- top: 50%;
- transform: translate(-50%, -50%);
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- gap: 30%;
- .background-video {
- position: absolute;
- top: 0;
- left: 0;
- width: 100%;
- height: 100%;
- object-fit: cover;
- z-index: -1;
- }
- .title {
- height: 20%;
- object-fit: contain;
- }
- .button {
- height: 5%;
- object-fit: contain;
- cursor: pointer;
- }
- }
- @media screen and (max-width: 768px) {
- .initPic {
- background-image: url('../../assets/img/homeBg.png');
- background-size: none;
- background-position: center;
- }
- }
- }
- }
|