diff options
author | Christian Cleberg <hello@cleberg.net> | 2023-05-23 18:57:32 -0500 |
---|---|---|
committer | Christian Cleberg <hello@cleberg.net> | 2023-05-23 18:57:32 -0500 |
commit | 3698657bae6d2cf0284a7838f4de54f20bc63a59 (patch) | |
tree | 4436ce1857d7284893540433ad97eff84f2a47c1 | |
parent | 0ebb91b25e856e101f5729cbb5ffe4871cc984bb (diff) | |
download | ifconfig.php-3698657bae6d2cf0284a7838f4de54f20bc63a59.tar.gz ifconfig.php-3698657bae6d2cf0284a7838f4de54f20bc63a59.tar.bz2 ifconfig.php-3698657bae6d2cf0284a7838f4de54f20bc63a59.zip |
fix tab and space mix error & css naming error
-rw-r--r-- | ifconfig.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ifconfig.php b/ifconfig.php index 065d4db..8f836d5 100644 --- a/ifconfig.php +++ b/ifconfig.php @@ -70,14 +70,14 @@ elseif (isset($query) && (($query=="text") || ($query=="all"))) { font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace; line-height: 1em; } - .small, .small > a { + small, small > a { font-size: 9pt; text-align: center; text-decoration: none; } @media (prefers-color-scheme: dark) { - body { background-color: #000; color: #ccc; } - a, a:visited { color: #0f0; } + body { background-color: #000; color: #ccc; } + a, a:visited { color: #0f0; } } </style> </head> |