123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103 |
- body {
- background-color: #33334c;
- background-image: url(mage.webp);
- background-size: contain;
- background-repeat: no-repeat;
- background-position: center;
- width: 100vw;
- height: 100vh;
- padding: 0;
- margin: 0;
- }
-
- #qr-code-area {
- display: flex;
- align-items: center;
- flex-direction: column;
- position: fixed;
- bottom: 16px;
- right: 16px;
- color: black;
- background-color: white;
- border-radius: 16px;
- padding: 0.5em;
- text-align: center;
- font-weight: bold;
- font-family: sans-serif;
- font-size: 1.25em;
- }
-
- #qr-code-area h4 {
- margin: 0;
- }
-
- #qr-code {
- image-rendering: pixelated;
- min-width: 120px;
- height: auto;
- }
-
- #back {
- position: fixed;
- top: 24px;
- right: 24px;
- padding: 16px;
- color: rgb(184, 98, 184);
- background-color: white;
- border: 0;
- border-radius: 24px;
- font-family: sans-serif;
- font-size: 1.25em;
- font-weight: bold;
- text-decoration: underline;
- transition: transform 0.25s;
- }
-
- #back:visited {
- color: rgb(184, 98, 184);
- }
-
- #back:active, #back:hover {
- color: rgb(184, 98, 184);
- transform: scale(1.1);
- }
-
- #prev, #next {
- position: fixed;
- top: calc(50% - 55px);
- font-size: 96px;
- color: white;
- text-decoration: none;
- outline: none;
- -webkit-tap-highlight-color: transparent;
- cursor: pointer;
- opacity: 0.5;
- transition: opacity 0.5s;
- transition: transform 0.125s;
- }
-
- #prev {
- left: 8%;
- }
-
- #next {
- right: 8%;
- }
-
- #prev:hover {
- opacity: 1.0;
- transform: translateX(-4px);
- }
-
- #next:hover {
- opacity: 1.0;
- transform: translateX(4px);
- }
-
- #prev::before {
- content: "\276E";
- }
-
- #next::before {
- content: "\276F";
- }
|