mirror of
https://github.com/zyqunix/tools.git
synced 2025-07-05 22:10:31 +02:00
29 lines
420 B
CSS
29 lines
420 B
CSS
@import url(/global.css);
|
|
|
|
.cards {
|
|
text-align: center;
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2rem;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
textarea {
|
|
background: var(--surface0);
|
|
border: 1px solid var(--surface1);
|
|
color: #f0f0f0;
|
|
padding: 12px;
|
|
border-radius: 8px;
|
|
font-size: 1rem;
|
|
width: 80%;
|
|
transition: border-color 0.2s;
|
|
outline: none;
|
|
resize: none;
|
|
}
|
|
|
|
#count {
|
|
margin-top: 10px;
|
|
font-size: 1.1rem;
|
|
}
|
|
|