This commit is contained in:
HearMeWhisper 2022-01-02 15:47:42 -05:00
parent bc7e2bbf9b
commit 1f0b0a08f6
2 changed files with 77 additions and 72 deletions

View File

@ -1,21 +1,22 @@
body { body {
background-color: #6497b1 background-color: #6497b1;
} font-family: "Courier Prime", monospace;
}
#input { #input {
border: 4px black solid; border: 4px black solid;
height: 20%; height: 5rem;
background-color: #e5e4e2; background-color: #e5e4e2;
border-radius: 5px; border-radius: 5px;
overflow: auto; overflow: auto;
width: 75vw; width: 75vw;
margin: auto; margin: auto;
} }
.submit { .submit {
background-color: #03396c; background-color: #03396c;
border: 2px black solid; border: 2px black solid;
width: 25vw; /* width: 25vw; */
height: 100px; height: 100px;
text-align: center; text-align: center;
cursor: pointer; cursor: pointer;
@ -26,26 +27,27 @@
justify-content: center; justify-content: center;
margin-top: 3%; margin-top: 3%;
margin-bottom: 3%; margin-bottom: 3%;
} padding: 0.5rem;
}
#out { #out {
border: 4px black solid; border: 4px black solid;
width: 75vw; width: 75vw;
height: 25%; height: 5rem;
margin: auto; margin: auto;
background-color: #e5e4e2; background-color: #e5e4e2;
border-radius: 5px; border-radius: 5px;
overflow: auto overflow: auto;
} }
#form { #form {
text-align: center text-align: center;
} }
#button { #button {
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
height: 20vh; height: max(fit-content, 175px);
} }
/* #button{margin-left:43%} */ /* #button{margin-left:43%} */

View File

@ -1,17 +1,20 @@
<DOCTYPE html> <!DOCTYPE html>
<html> <html lang="en">
<head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<head> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Courier+Prime&display=swap" rel="stylesheet">
<title>Binary</title> <title>Binary</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" type="text/css" href="/menu/menu.css" /> <link rel="stylesheet" type="text/css" href="/menu/menu.css" />
<link rel="icon" type="image/ico" href="../binary.ico"> <link rel="icon" type="image/ico" href="../binary.ico">
<link rel="stylesheet" type="text/css" href="binary.css" /> <link rel="stylesheet" type="text/css" href="binary.css" />
</head> </head>
<body>
<body>
<div id="nav_menu"> <div id="nav_menu">
</div> </div>
<script src="/menu/menu.js"></script> <script src="/menu/menu.js"></script>
@ -34,10 +37,10 @@
<div id="out" onclick="copy()"> <div id="out" onclick="copy()">
<div> <div>
</body>
<br /> <br />
<script type="text/javascript" src="binary.js"> <script type="text/javascript" src="binary.js">
</script> </script>
</body>
</html> </html>