mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-05 22:10:31 +02:00
guestbook ip js keyboard
This commit is contained in:
parent
6728ebcfbf
commit
eb2229631a
8 changed files with 50 additions and 175 deletions
|
@ -8,7 +8,7 @@
|
|||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="card shadow">
|
||||
<div class="cards shadow">
|
||||
<h1>JavaScript Evaluator</h1>
|
||||
<textarea id="input" type="text" placeholder="Enter code..." rows="10" columns="10"></textarea>
|
||||
<button id="evaluate">Evaluate</button>
|
||||
|
|
18
js/style.css
18
js/style.css
|
@ -1,6 +1,6 @@
|
|||
@import url(/global.css);
|
||||
|
||||
.container {
|
||||
.cards {
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
border-radius: 20px;
|
||||
|
@ -13,8 +13,8 @@ textarea {
|
|||
padding: 10px;
|
||||
border-radius: 10px;
|
||||
border: none;
|
||||
background-color: #333;
|
||||
color: #f0f0f0;
|
||||
background-color: var(--surface0);
|
||||
color: var(--text);
|
||||
resize: none;
|
||||
outline: none;
|
||||
}
|
||||
|
@ -26,22 +26,22 @@ button {
|
|||
border-radius: 10px;
|
||||
border: none;
|
||||
background-color: #333;
|
||||
color: #f0f0f0;
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
button {
|
||||
cursor: pointer;
|
||||
background-color: #444;
|
||||
background-color: var(--surface1);
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: #555;
|
||||
background-color: var(--surface2);
|
||||
}
|
||||
|
||||
pre {
|
||||
font-family: "JetBrainsMono";
|
||||
background-color: #333;
|
||||
color: #fff;
|
||||
background-color: var(--crust);
|
||||
color: var(--white);
|
||||
text-align: left;
|
||||
padding: 3px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue