From fe71aa41d40b8b52158bfae909d058fb431ab858 Mon Sep 17 00:00:00 2001 From: warface Date: Tue, 28 Feb 2023 13:08:43 +0000 Subject: [PATCH] Update style.css --- style.css | 67 ++++++++++++++++--------------------------------------- 1 file changed, 19 insertions(+), 48 deletions(-) diff --git a/style.css b/style.css index 70da789..2c5e93d 100644 --- a/style.css +++ b/style.css @@ -10,56 +10,27 @@ License URI: http://opensource.org/licenses/mit-license.php */ -/*------------------------------------*\ - MAIN -\*------------------------------------*/ - +/* Reset */ *, -:after, -:before { - -moz-box-sizing: border-box; - box-sizing: border-box; - -webkit-font-smoothing: antialiased; - text-rendering: optimizeLegibility; -} -html, -body { - font-size: 100%; -} -body { - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - color: #000; -} -.clear:after, -.clear:before { - content: " "; - display: table; +*::before, +*::after { + box-sizing: border-box; } -.clear:after { - clear: both; +* { + margin: 0; + padding: 0; + font: inherit; } -.clear { - *zoom: 1; +html { + color-scheme: dark light; } -img { - max-width: 100%; - vertical-align: bottom; -} -a { - color: #000; - text-decoration: none; -} -a:hover { - color: #000; -} -a:active, -a:focus, -a:hover { - outline: 0; - text-decoration: none; - background: none; -} -input:focus { - outline: 0; - border: 1px solid #04a4cc; +body { + min-height: 100vh; +} +img, +picture, +svg, +video { + display: block; + max-width: 100%; }