CSS style moved to inline (#1050)

This commit is contained in:
nobody 2022-07-16 07:52:30 +02:00
parent 057a127ae6
commit 15f51d9980
No known key found for this signature in database
GPG Key ID: 8F6DE3D614FCFD7A
2 changed files with 29 additions and 28 deletions

View File

@ -6,7 +6,35 @@
<meta charset="utf-8">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="stylesheet" href="style.css">
<style>
html {
background-color: #eee;
box-sizing: border-box;
}
body {
font-size: 1.4em;
text-align: center;
color: #222;
font-family: Helvetica, sans-serif;
}
.logo {
display: block;
height: 7em;
margin: 3em auto;
}
@media (prefers-color-scheme: dark) {
html {
background-color: #404040;
}
body {
color: #aeaeae !important;
}
}
</style>
</head>
<body>
<img src="logo.svg" alt="LocalCDN" class="logo"/>

View File

@ -1,27 +0,0 @@
html {
background-color: #eee;
box-sizing: border-box;
}
body {
font-size: 1.4em;
text-align: center;
color: #222;
font-family: Helvetica, sans-serif;
}
.logo {
display: block;
height: 7em;
margin: 3em auto;
}
@media (prefers-color-scheme: dark) {
html {
background-color: #404040;
}
body {
color: #aeaeae !important;
}
}