New style

master
zmv7 2021-12-03 01:40:11 +05:00 committed by GitHub
parent f5b66f9011
commit fa273d98f4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 26 additions and 3 deletions

View File

@ -1,9 +1,32 @@
<!doctype html>
<html>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="viewport" content="width=device-width, initial-scale=1"><meta charset=utf-8>
<head>
<style>
*{font-family: Verdana}
@font-face{font-family: DOS; src: url(/fonts/FSEX300.woff)}
*{font-family: DOS,Monaco,Menlo,Consolas,"Courier New",monospace;font-size:20px;color:#bbb}
body{background:#000084;}
#start,#stop{
display: inline-block;
padding: 0 10px;
margin-bottom: 10px;
font-size: 20px;
color: #000;
text-align: center;
vertical-align: middle;
cursor: default;
background: #bbb;
border: 0;
border-width: 0;
border-radius: 0;
box-shadow: 10px 10px 0 #000;
}
#start:active,#stop:active{margin: 5px 0 5px 5px;
box-shadow: 5px 5px #000
}
input{background:#bbb;color:#000}
input[type=text]{border:double #000}
</style>
<title>Flooder</title>
<script type="text/javascript">
@ -93,7 +116,7 @@
Цель:<br>
<input id="url" style="width:99.5%" type="text" value="http://"><br><br>
Тайм-аут:<br><input id="wait" type="text" value="10"> мс<br><br>
<input value="Старт" id="start" onclick="startPings()" type="button"><input value="Стоп" id="stop" onclick="stopPings()" disabled="disabled" type="button"><br><br>
<input value="Старт" id="start" onclick="startPings()" type="button"> <input value="Стоп" id="stop" onclick="stopPings()" disabled="disabled" type="button"><br><br>
Статус: <span id="running"></span><br>
<div id="status"></div>
</body>