mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-06 06:20:30 +02:00
morse && -notes
This commit is contained in:
parent
b5d4387c95
commit
b2150a6161
5 changed files with 5 additions and 359 deletions
|
@ -8,7 +8,7 @@
|
|||
<link rel="stylesheet" href="style.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="card shadow">
|
||||
<div class="cards shadow">
|
||||
<h1>Morse Translator</h1>
|
||||
<textarea id="textInput" placeholder="Enter text..." rows="5"></textarea>
|
||||
<button id="translate-to-morse">Translate to Morse</button>
|
||||
|
|
|
@ -13,8 +13,8 @@ textarea, input, button {
|
|||
padding: 10px;
|
||||
border-radius: 10px;
|
||||
border: none;
|
||||
background-color: #333;
|
||||
color: #f0f0f0;
|
||||
background-color: var(--surface0);
|
||||
color: var(--text);
|
||||
}
|
||||
|
||||
textarea {
|
||||
|
@ -24,10 +24,10 @@ textarea {
|
|||
|
||||
button {
|
||||
cursor: pointer;
|
||||
background-color: #444;
|
||||
background-color: var(--surface0);
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background-color: #555;
|
||||
background-color: var(--surface1);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue