diff options
author | Matthew Lemon <y@yulqen.org> | 2024-12-02 15:08:54 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2024-12-02 15:08:54 +0000 |
commit | 0c185c292d0d2f3adeaef565e520eb1ede329d72 (patch) | |
tree | 8bdfd539d285b497c87c520751d279a8bd99b8e2 /alphabetlearning/static/css/project.css | |
parent | 41a2b8d6f1b01333c95ec3871f31942c5ab6d39b (diff) |
wip: site is better
Diffstat (limited to 'alphabetlearning/static/css/project.css')
-rw-r--r-- | alphabetlearning/static/css/project.css | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/alphabetlearning/static/css/project.css b/alphabetlearning/static/css/project.css index cdff2b3..08d743c 100644 --- a/alphabetlearning/static/css/project.css +++ b/alphabetlearning/static/css/project.css @@ -95,6 +95,27 @@ button { font-weight: 400; /* Regular for body text */ } +input { + border: 6px solid rgb(253, 119, 119); + border-radius: 4px; + font-size: 2.0rem; + display: block; + padding: 10px; + width: 100%; + height: 100px; +} + +input:focus { + border-color: darkgray; +} + +input::placeholder { + color: darkgray; + font-size: 2.0rem; +} + + + .custom-text { font-family: "Roboto", sans-serif; font-size: 1.1rem; |