dark mode upend.svg, use as favicon, create /media

feat/vaults
Tomáš Mládek 2021-12-06 15:13:30 +01:00
parent 043418f580
commit 742ee77fdc
6 changed files with 46 additions and 18 deletions

View File

Before

Width:  |  Height:  |  Size: 2.4 KiB

After

Width:  |  Height:  |  Size: 2.4 KiB

18
media/upend.svg Normal file
View File

@ -0,0 +1,18 @@
<svg style="fill:none" width="255" height="255" xmlns="http://www.w3.org/2000/svg">
<style>
path {
fill:none;
stroke:#0a0a0a;
stroke-width:15px;
stroke-linecap:round;
stroke-linejoin:round
}
@media (prefers-color-scheme: dark) {
path {
stroke: white;
}
}
</style>
<path d="M7.5 7.5v0h240m-120 0v0l-120 120m240 0v0l-120-120m0 240v0-240" />
</svg>

After

Width:  |  Height:  |  Size: 490 B

View File

@ -1 +1,18 @@
<svg style="fill:none" width="255" height="255" xmlns="http://www.w3.org/2000/svg"><path style="fill:none;stroke:#0a0a0a;stroke-width:15px;stroke-linecap:round;stroke-linejoin:round" d="M7.5 7.5v0h240m-120 0v0l-120 120m240 0v0l-120-120m0 240v0-240"/></svg>
<svg style="fill:none" width="255" height="255" xmlns="http://www.w3.org/2000/svg">
<style>
path {
fill:none;
stroke:#0a0a0a;
stroke-width:15px;
stroke-linecap:round;
stroke-linejoin:round
}
@media (prefers-color-scheme: dark) {
path {
stroke: white;
}
}
</style>
<path d="M7.5 7.5v0h240m-120 0v0l-120 120m240 0v0l-120-120m0 240v0-240" />
</svg>

Before

Width:  |  Height:  |  Size: 256 B

After

Width:  |  Height:  |  Size: 490 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 KiB

View File

@ -1,19 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<head>
<meta charset='utf-8'>
<meta name='viewport' content='width=device-width,initial-scale=1'>
<title>UpEnd</title>
<title>UpEnd</title>
<link rel="icon" type="image/png" href="/assets/upend.svg" />
<link rel="stylesheet" href="/build/bundle.css" />
<link rel='icon' type='image/png' href='/favicon.png'>
<link rel='stylesheet' href='/build/bundle.css'>
<script defer src="/build/bundle.js"></script>
</head>
<script defer src='/build/bundle.js'></script>
</head>
<body>
</body>
</html>
<body></body>
</html>

View File

@ -53,10 +53,6 @@
.logo {
display: inline-block;
height: 1.5em;
@media (prefers-color-scheme: dark) {
filter: invert(1);
}
}
sl-input {