mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-05 22:10:31 +02:00
character
This commit is contained in:
parent
22ad8f2cdb
commit
56c754a592
2 changed files with 7 additions and 3 deletions
|
@ -10,7 +10,7 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1>Character Counter</h1>
|
<h1>Character Counter</h1>
|
||||||
<div class="card shadow">
|
<div class="cards shadow">
|
||||||
<textarea id="input" placeholder="Enter Text" rows="10" cols="60"></textarea>
|
<textarea id="input" placeholder="Enter Text" rows="10" cols="60"></textarea>
|
||||||
<div id="count">0</div>
|
<div id="count">0</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,13 +1,17 @@
|
||||||
@import url(/global.css);
|
@import url(/global.css);
|
||||||
|
|
||||||
|
.cards {
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
h1 {
|
h1 {
|
||||||
font-size: 2rem;
|
font-size: 2rem;
|
||||||
margin-bottom: 30px;
|
margin-bottom: 30px;
|
||||||
}
|
}
|
||||||
|
|
||||||
textarea {
|
textarea {
|
||||||
background: #1e1e1e;
|
background: var(--surface0);
|
||||||
border: 1px solid #444;
|
border: 1px solid var(--surface1);
|
||||||
color: #f0f0f0;
|
color: #f0f0f0;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue