mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-06 06:20:30 +02:00
js evaluator
This commit is contained in:
parent
4fb79a1d68
commit
776d988872
3 changed files with 86 additions and 0 deletions
47
js/style.css
Normal file
47
js/style.css
Normal file
|
@ -0,0 +1,47 @@
|
|||
@import url(/global.css);
|
||||
|
||||
.container {
|
||||
text-align: center;
|
||||
padding: 20px;
|
||||
border-radius: 20px;
|
||||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.7);
|
||||
}
|
||||
|
||||
textarea {
|
||||
width: 90%;
|
||||
margin-top: 10px;
|
||||
padding: 10px;
|
||||
border-radius: 10px;
|
||||
border: none;
|
||||
background-color: #333;
|
||||
color: #f0f0f0;
|
||||
resize: none;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
button {
|
||||
width: 70%;
|
||||
margin-top: 10px;
|
||||
padding: 10px;
|
||||
border-radius: 10px;
|
||||
border: none;
|
||||
background-color: #333;
|
||||
color: #f0f0f0;
|
||||
}
|
||||
|
||||
button {
|
||||
cursor: pointer;
|
||||
background-color: #444;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: #555;
|
||||
}
|
||||
|
||||
pre {
|
||||
font-family: "JetBrainsMono";
|
||||
background-color: #333;
|
||||
color: #fff;
|
||||
text-align: left;
|
||||
padding: 3px;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue