123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
-
- * {
- -webkit-tap-highlight-color: rgba(0,0,0,0);
- }
-
- body {
- -webkit-touch-callout: none;
- -webkit-text-size-adjust: none;
- -webkit-user-select: none;
- background-color:#E4E4E4;
- background-image:linear-gradient(top, #A7A7A7 0%, #E4E4E4 51%);
- font-family: system-ui, -apple-system, -apple-system-font, 'Segoe UI', 'Roboto', sans-serif;
- font-size:12px;
- height:100vh;
- margin:0px;
- padding:0px;
-
- padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-right, 0px);
- text-transform:uppercase;
- width:100%;
- }
-
-
- .app {
- background:url(../img/logo.png) no-repeat center top;
- position:absolute;
- left:50%;
- top:50%;
- height:50px;
- width:225px;
- text-align:center;
- padding:180px 0px 0px 0px;
- margin:-115px 0px 0px -112px;
-
- }
-
-
- @media screen and (min-aspect-ratio: 1/1) and (min-width:400px) {
- .app {
- background-position:left center;
- padding:75px 0px 75px 170px;
- margin:-90px 0px 0px -198px;
-
- }
- }
-
- h1 {
- font-size:24px;
- font-weight:normal;
- margin:0px;
- overflow:visible;
- padding:0px;
- text-align:center;
- }
-
- .event {
- border-radius:4px;
- -webkit-border-radius:4px;
- color:#FFFFFF;
- font-size:12px;
- margin:0px 30px;
- padding:2px 0px;
- }
-
- .event.listening {
- background-color:#333333;
- display:block;
- }
-
- .event.received {
- background-color:#4B946A;
- display:none;
- }
-
- @keyframes fade {
- from { opacity: 1.0; }
- 50% { opacity: 0.4; }
- to { opacity: 1.0; }
- }
-
- @-webkit-keyframes fade {
- from { opacity: 1.0; }
- 50% { opacity: 0.4; }
- to { opacity: 1.0; }
- }
-
- .blink {
- animation:fade 3000ms infinite;
- -webkit-animation:fade 3000ms infinite;
- }
|