diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/Geshem.css | 17 | ||||
| -rw-r--r-- | src/Info.js | 44 |
2 files changed, 49 insertions, 12 deletions
diff --git a/src/Geshem.css b/src/Geshem.css index 87b22cf..3a0de94 100644 --- a/src/Geshem.css +++ b/src/Geshem.css @@ -25,10 +25,18 @@ position: fixed; top: 50%; left: 50%; - /* bring your own prefixes */ transform: translate(-50%, -50%); - padding: 30px; + padding: 15px 30px; background: #777; + max-height: 40vh; + overflow-y: scroll; +} + +@media only screen and (max-device-width: 812px) { + #info-modal { + padding: 0px 12px; + width: 70vw; + } } #info-eng { @@ -63,3 +71,8 @@ margin-left: 8vw; } } + +a, +a:visited { + color: #79b0d4; +} diff --git a/src/Info.js b/src/Info.js index dac9244..79b37e1 100644 --- a/src/Info.js +++ b/src/Info.js @@ -15,21 +15,45 @@ function Info(props) { </div> <div id="info-modal" style={{ display: open ? "block" : "none" }}> <div id="info-eng"> - <p>Geshem.space shows real-time rain radar data in Israel.</p> - <p>The entire source code is open and available at</p> <p> - <a href="https://github.com/yuvadm/geshem.space"> - https://github.com/yuvadm/geshem.space - </a> + <strong> + Geshem.space shows real-time rain radar data in Israel + </strong> + </p> + <p> + Rain clouds show up as colored patches on the map, a warmer color + means stronger percipication + </p> + <p> + Use the slider on the bottom to scroll through the animation of the + last hour and determine whether the clouds are coming your way + </p> + <p> + Developed by <a href="https://yuv.al">Yuval Adam</a> + </p> + <p> + Source code available on{" "} + <a href="https://github.com/yuvadm/geshem.space">Github</a> </p> </div> <div id="info-heb"> - <p>גשם.ספייס מציג מידע בזמן אמת על ענני גשם בכל הארץ</p> - <p>קוד המקור של האתר פתוח וזמין לצפייה בכתובת</p> <p> - <a href="https://github.com/yuvadm/geshem.space"> - https://github.com/yuvadm/geshem.space - </a> + <strong>גשם.ספייס מציג בזמן אמת ענני גשם בכל הארץ</strong> + </p> + <p> + עננים מופיעים כגושים צבעוניים על גבי המפה, צבע חם יותר מסמל עננות + צפופה ולכן גשם חזק יותר + </p> + <p> + השתמשו בסליידר בתחתית המסך כדי לגלול באנימציה של העננים בשעה האחרונה + על מנת להבין האם ענני הגשם בדרך אליכם + </p> + <p> + פותח ע"י <a href="https://yuv.al">יובל אדם</a> + </p> + <p> + קוד המקור זמין ב + <a href="https://github.com/yuvadm/geshem.space">גיטהאב</a> </p> </div> </div> |
