From 2a82b78f0a4a0aa23c16ac5debbb7ad026f606c0 Mon Sep 17 00:00:00 2001 From: mat Date: Tue, 22 Feb 2022 22:03:39 +0000 Subject: create index page --- src/app.css | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/app.css') diff --git a/src/app.css b/src/app.css index a77dddd..154cdc0 100644 --- a/src/app.css +++ b/src/app.css @@ -127,7 +127,8 @@ main { /* base styles for inputs */ input[type='text'], -input[type='submit'] { +input[type='submit'], +button { -webkit-appearance: none; background-color: transparent; color: var(--theme-darker-text); @@ -152,13 +153,15 @@ input[type='text']:focus { } /* base styles for buttons */ -input[type='submit'] { +input[type='submit'], +button { margin-left: 0.2em; cursor: pointer; } /* Hovering over a button */ -input[type='submit']:hover { +input[type='submit']:hover, +button:hover { /* make the text lighter */ color: var(--theme-main-text); } -- cgit