12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- body {
- background-color: #673ab6;
- background-image: url(../assets/poster.svg);
- background-position: center;
- background-repeat: no-repeat;
- height: 100vh;
- margin: 0;
- padding: 0;
- }
-
- #scan {
- width: 100%;
- height: 100%;
- object-fit: contain;
- opacity: 0.75;
- z-index: 0;
- }
-
- #about, #sponsor {
- position: absolute;
- width: 64px;
- height: 64px;
-
- opacity: 0.5;
- z-index: 1;
- outline: none;
- -webkit-tap-highlight-color: transparent;
- cursor: pointer;
-
- background-color: transparent;
- background-size: cover;
- border-color: white;
- border-style: solid;
- border-width: 2px;
- border-radius: 64px;
- }
-
- #about:active, #about:focus, #sponsor:active, #sponsor:focus {
- background-color: #ffd500;
- border-color: #ffd500;
- opacity: 1.0;
- }
-
- #about {
- top: 24px;
- right: 24px;
- background-image: url(../assets/info.svg);
- }
-
- #sponsor {
- top: calc(50% - 32px);
- right: 24px;
- background-image: url(../assets/heart.svg);
- }
-
- @media screen and (orientation: portrait) {
- #about {
- left: 24px;
- bottom: 24px;
- top: initial;
- right: initial;
- }
-
- #sponsor {
- left: calc(50% - 32px);
- bottom: 24px;
- top: initial;
- right: initial;
- }
- }
|