1
0
mirror of https://codeberg.org/nobody/LocalCDN.git synced 2025-02-03 04:37:55 +01:00

Inline CSS moved to external (#1137)

This commit is contained in:
nobody 2022-09-19 06:21:56 +02:00
parent 703438ce0b
commit 7354af3b24
No known key found for this signature in database
GPG Key ID: 8F6DE3D614FCFD7A
2 changed files with 28 additions and 29 deletions

View File

@ -6,35 +6,7 @@
<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">
<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>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<img src="logo.svg" alt="LocalCDN" class="logo"/>

View File

@ -0,0 +1,27 @@
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;
}
}