|
| 1 | +<!DOCTYPE html> |
| 2 | +<html> |
| 3 | + <head> |
| 4 | + <!-- <script src="scripts/snake.js"></script> --> |
| 5 | + <meta charset="utf-8"> |
| 6 | + <!-- <link rel="icon" type="image/x-icon" href="images/.png"> --> |
| 7 | + <meta id="myViewport" name="viewport" content="width=device-width, initial-scale=1.0"> |
| 8 | + <script> |
| 9 | + window.onload = function () { |
| 10 | + var mvp = document.getElementById('myViewport'); |
| 11 | + mvp.setAttribute('content','width=430'); |
| 12 | + } |
| 13 | + </script> |
| 14 | + <style> |
| 15 | + .row { |
| 16 | + display: flex; |
| 17 | + } |
| 18 | + .column { |
| 19 | + float: left; |
| 20 | + } |
| 21 | + .left { |
| 22 | + width: calc(20% - 16px); |
| 23 | + /*border-radius: 10px;*/ |
| 24 | + } |
| 25 | + .middle { |
| 26 | + width: 60%; |
| 27 | + /*padding-top: 8px;*/ |
| 28 | + /*padding-bottom: 16px;*/ |
| 29 | + padding-right: 16px; |
| 30 | + padding-left: 16px; |
| 31 | + min-height: calc(100vh - 40px); |
| 32 | + /*min-width: 600px;*/ |
| 33 | + /*min-height: 100vh;*/ |
| 34 | + /* height: auto !important; min-height hack |
| 35 | + height: 100%; - 150px min-height hack*/ |
| 36 | + } |
| 37 | + @media only screen and (max-width: 1000px) { |
| 38 | + .middle |
| 39 | + { |
| 40 | + min-width: min(90%, 600px) |
| 41 | + /*max-width: ;*/ |
| 42 | + } |
| 43 | + } |
| 44 | + |
| 45 | + .right { |
| 46 | + width: calc(20% - 16px); |
| 47 | + /*border-radius: 10px;*/ |
| 48 | + } |
| 49 | + |
| 50 | + </style> |
| 51 | + <title>Duckclient</title> |
| 52 | + </head> |
| 53 | + <body style="background-color: black; background-image: url('duck_theme.png'); background-size: cover; color-scheme: dark; color: white;"> |
| 54 | + <div class="row"> |
| 55 | + <div class="left" style="background-color:transparent;"> |
| 56 | + |
| 57 | + </div> |
| 58 | + |
| 59 | + <div class="middle" style="background-color: rgba(0,0,0,0.5);"> |
| 60 | + <center><h2>Duck Client<h2></center> |
| 61 | + The duck client! Based on the ddnet or infclass client for ddnet/teeworlds! Made by Pointer! Has exciting features!<br> |
| 62 | + <a href="https://github.com/Pointer31/ddnet_client/tree/infclass-based">Github (infclass based)</a> |
| 63 | + <ul> |
| 64 | + <li>Several toggles for old versions of UI!</li> |
| 65 | + <li>Extra particles!</li> |
| 66 | + <li>Ducks!</li> |
| 67 | + </ul> |
| 68 | + <!-- <div style="position: absolute; bottom: 45px;"> |
| 69 | + <a href="https://github.com/Pointer31/ddnet_client/tree/infclass-based"> |
| 70 | + <img style="filter: invert(100%);" src="icongithub.svg" alt="github icon" width="30" style="padding: 15px;"> |
| 71 | + </a> |
| 72 | + </div> --> |
| 73 | + </div> |
| 74 | + |
| 75 | + <div class="right" style="background-color:transparent;"> |
| 76 | + |
| 77 | + </div> |
| 78 | + </div> |
| 79 | + </body> |
| 80 | +</html> |
0 commit comments