diff --git a/htdocs/css/general.css b/htdocs/css/general.css index 24ca2c9..017b77b 100644 --- a/htdocs/css/general.css +++ b/htdocs/css/general.css @@ -1,18 +1,26 @@ .btn { display: inline-block; - padding: 0.3em; + padding: 0.3em 1.3em; text-decoration: none; font-size: 0.95em; font-family: none; border: 1px black solid; - background: blue; + border-radius: 5px; + background: #0e6eff; color: white; cursor: pointer; } +.btn:hover { + opacity: 0.8; +} -ul.func-btn li { +.func-btn li { + display: inline-block; +} + +.func-btn form { display: inline-block; } @@ -38,7 +46,8 @@ html, body { } body { - background: red; + background: #ffd5d5; + background: linear-gradient(153deg, rgba(255,255,255,1) 0%, rgba(255,213,213,1) 100%); } div#container { @@ -49,6 +58,7 @@ div#container { display: block; background: white; + box-shadow: 1px 1px 20px gray; } header h1{ diff --git a/htdocs/index.php b/htdocs/index.php index c2a4776..e742a53 100644 --- a/htdocs/index.php +++ b/htdocs/index.php @@ -20,6 +20,9 @@ $list = $db->getList($page, $list_max_count);