1
0
Fork 0

Style for an input text field. Added class .hidden to hide table rows.

This commit is contained in:
Alexander Andreev 2022-10-18 22:20:28 +04:00
parent f6dd6b76d0
commit 4ef2a77c25
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F
1 changed files with 12 additions and 0 deletions

View File

@ -28,6 +28,8 @@
background-color: var(--secondary-color);
color: var(--background-color); }
::placeholder { color: var(--primary-color); }
a {
color: var(--primary-color);
text-decoration: none; }
@ -56,6 +58,8 @@ h2 {
font-size: 1.4rem;
margin: 1rem 0; }
.hidden { display: none; }
html { margin-left: calc(100vw - 100%); }
body {
@ -148,6 +152,14 @@ section { margin-top: 1rem; }
background-color: var(--background-color);
color: var(--primary-color); }
input[name="filter"] {
background-color: var(--background-color);
border: none;
border-bottom: 1px solid var(--primary-color);
color: var(--text-color);
font: inherit;
width: 100%; }
table { overflow-y: scroll; width: 100%; }
tr { vertical-align: top; }