mirror of https://git.lenooby09.tech/LeNooby09/social-app.git
at patch-version 152 lines 4.7 kB view raw
1<!DOCTYPE html> 2<html> 3 <head> 4 <meta charset="utf-8"> 5 <meta name="theme-color"> 6 <!-- 7 This viewport works for phones with notches. 8 It's optimized for gestures by disabling global zoom. 9 --> 10 <meta 11 name="viewport" 12 content="width=device-width, initial-scale=1, minimum-scale=1, maximum-scale=1.00001, viewport-fit=cover" 13 /> 14 <!-- 15 Preconnect to essential domains 16 --> 17 <link rel="preconnect" href="https://bsky.social"> 18 <title>%WEB_TITLE%</title> 19 20 <link rel="preload" as="font" type="font/woff2" href="/static/media/InterVariable.c504db5c06caaf7cdfba.woff2" crossorigin> 21 22 <style> 23 /** 24 * Minimum styles required to render splash. 25 * 26 * ALL OTHER STYLES BELONG IN `src/style.css` 27 * 28 * THIS NEEDS TO BE DUPLICATED IN `bskyweb/templates/base.html` 29 */ 30 @font-face { 31 font-family: 'InterVariable'; 32 src: url(/static/media/InterVariable.c504db5c06caaf7cdfba.woff2) format('woff2'); 33 font-weight: 300 1000; 34 font-style: normal; 35 font-display: swap; 36 } 37 @font-face { 38 font-family: 'InterVariableItalic'; 39 src: url(/static/media/InterVariable-Italic.01dcbad1bac635f9c9cd.woff2) format('woff2'); 40 font-weight: 300 1000; 41 font-style: italic; 42 font-display: swap; 43 } 44 html { 45 background-color: white; 46 } 47 @media (prefers-color-scheme: dark) { 48 html { 49 background-color: black; 50 } 51 } 52 html, 53 body { 54 margin: 0px; 55 padding: 0px; 56 font-family: InterVariable, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Liberation Sans', Helvetica, Arial, sans-serif; 57 text-rendering: optimizeLegibility; 58 /* Platform-specific reset */ 59 -webkit-overflow-scrolling: touch; 60 -webkit-text-size-adjust: 100%; 61 -webkit-font-smoothing: antialiased; 62 -moz-osx-font-smoothing: grayscale; 63 -ms-overflow-style: scrollbar; 64 font-synthesis-weight: none; 65 } 66 html, 67 body, 68 #root { 69 display: flex; 70 flex: 1 0 auto; 71 min-height: 100%; 72 width: 100%; 73 } 74 #splash { 75 position: fixed; 76 width: 100px; 77 left: 50%; 78 top: 50%; 79 transform: translateX(-50%) translateY(-50%) translateY(-50px); 80 } 81 /** 82 * We need these styles to prevent shifting due to scrollbar show/hide on 83 * OSs that have them enabled by default. This also handles cases where the 84 * screen wouldn't otherwise scroll, and therefore hide the scrollbar and 85 * shift the content, by forcing the page to show a scrollbar. 86 */ 87 body { 88 width: 100%; 89 overflow-y: scroll; 90 } 91 </style> 92 </head> 93 94 <body> 95 <!-- 96 A generic no script element with a reload button and a message. 97 Feel free to customize this however you'd like. 98 --> 99 <noscript> 100 <form 101 action="" 102 style=" 103 background-color: #fff; 104 position: fixed; 105 top: 0; 106 left: 0; 107 right: 0; 108 bottom: 0; 109 z-index: 9999; 110 " 111 > 112 <div 113 style=" 114 font-size: 18px; 115 font-family: Helvetica, sans-serif; 116 line-height: 24px; 117 margin: 10%; 118 width: 80%; 119 " 120 > 121 <p lang="en">Oh no! It looks like JavaScript is not enabled in your browser.</p> 122 <p lang="en" style="margin: 20px 0;"> 123 <button 124 type="submit" 125 style=" 126 background-color: #4630eb; 127 border-radius: 100px; 128 border: none; 129 box-shadow: none; 130 color: #fff; 131 cursor: pointer; 132 font-weight: bold; 133 line-height: 20px; 134 padding: 6px 16px; 135 " 136 > 137 Reload 138 </button> 139 </p> 140 </div> 141 </form> 142 </noscript> 143 144 <!-- The root element for your Expo app. --> 145 <div id="root"> 146 <div id="splash"> 147 <!-- Bluesky SVG --> 148 <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 360 320"><path fill="#0085ff" d="M180 142c-16.3-31.7-60.7-90.8-102-120C38.5-5.9 23.4-1 13.5 3.4 2.1 8.6 0 26.2 0 36.5c0 10.4 5.7 84.8 9.4 97.2 12.2 41 55.7 55 95.7 50.5-58.7 8.6-110.8 30-42.4 106.1 75.1 77.9 103-16.7 117.3-64.6 14.3 48 30.8 139 116 64.6 64-64.6 17.6-97.5-41.1-106.1 40 4.4 83.5-9.5 95.7-50.5 3.7-12.4 9.4-86.8 9.4-97.2 0-10.3-2-27.9-13.5-33C336.5-1 321.5-6 282 22c-41.3 29.2-85.7 88.3-102 120Z"/></svg> 149 </div> 150 </div> 151 </body> 152</html>