organize images better
|
@ -17,6 +17,6 @@ favicon.ico: transbeam-16.png transbeam-32.png transbeam-48.png transbeam-64.png
|
|||
convert -background transparent $^ $@
|
||||
|
||||
install: icons
|
||||
cp $(icons) ../static/
|
||||
cp $(icons) ../static/images/site-icons/
|
||||
clean:
|
||||
rm *.svg *.png *.ico
|
||||
|
|
Before Width: | Height: | Size: 351 B After Width: | Height: | Size: 351 B |
Before Width: | Height: | Size: 299 B After Width: | Height: | Size: 299 B |
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 44 KiB |
Before Width: | Height: | Size: 139 KiB After Width: | Height: | Size: 139 KiB |
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 8.8 KiB After Width: | Height: | Size: 8.8 KiB |
|
@ -4,14 +4,14 @@
|
|||
<meta charset="utf-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<link rel="stylesheet" type="text/css" href="transbeam.css"/>
|
||||
<link rel="apple-touch-icon" href="transbeam-apple.png"/>
|
||||
<link rel="apple-touch-icon" href="images/site-icons/transbeam-apple.png"/>
|
||||
<link rel="manifest" href="manifest.json"/>
|
||||
<script src="util.js"></script>
|
||||
<title>transbeam</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="header">
|
||||
<img src="transbeam.svg" height="128">
|
||||
<img src="images/site-icons/transbeam.svg" height="128">
|
||||
<h1>transbeam</h1>
|
||||
</div>
|
||||
|
||||
|
|
|
@ -2,17 +2,17 @@
|
|||
"name": "transbeam",
|
||||
"icons": [
|
||||
{
|
||||
"src": "transbeam.svg",
|
||||
"src": "images/site-icons/transbeam.svg",
|
||||
"type": "image/svg+xml",
|
||||
"sizes": "512x512"
|
||||
},
|
||||
{
|
||||
"src": "transbeam-192.png",
|
||||
"src": "images/site-icons/transbeam-192.png",
|
||||
"type": "image/png",
|
||||
"sizes": "192x192"
|
||||
},
|
||||
{
|
||||
"src": "transbeam-512.png",
|
||||
"src": "images/site-icons/transbeam-512.png",
|
||||
"type": "image/png",
|
||||
"sizes": "512x512"
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ body {
|
|||
width: 18px;
|
||||
height: 18px;
|
||||
background-color: #333;
|
||||
mask-image: url("feather-icons/copy.svg");
|
||||
mask-image: url("images/feather-icons/copy.svg");
|
||||
mask-size: contain;
|
||||
mask-repeat: no-repeat;
|
||||
}
|
||||
|
@ -87,7 +87,7 @@ td {
|
|||
|
||||
td.file_delete {
|
||||
background-color: #888;
|
||||
mask-image: url("feather-icons/x.svg");
|
||||
mask-image: url("images/feather-icons/x.svg");
|
||||
mask-size: contain;
|
||||
mask-repeat: no-repeat;
|
||||
mask-position: center;
|
||||
|
|