1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- 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;
- }
-
- #about, #sponsor {
- position: absolute;
- width: 64px;
- height: 64px;
-
- opacity: 0.5;
- 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;
- }
- }
|