Browse Source

added a favicon

master
crunk 3 years ago
parent
commit
e5a43b49b3
  1. 6
      library/static/css/style.css
  2. BIN
      library/static/icons/android-chrome-192x192.png
  3. BIN
      library/static/icons/android-chrome-512x512.png
  4. BIN
      library/static/icons/apple-touch-icon.png
  5. BIN
      library/static/icons/favicon-16x16.png
  6. BIN
      library/static/icons/favicon-32x32.png
  7. BIN
      library/static/icons/favicon.ico
  8. 1
      library/static/icons/site.webmanifest
  9. 5
      library/templates/base.html

6
library/static/css/style.css

@ -129,9 +129,11 @@ td {
border: 1px solid black;
background-color: #f1f1f1;
}
.tdimage {
padding: 0;
}
.tdimage > img {
width: 100%;
height: 100%;
@ -140,3 +142,7 @@ td {
.error{
color: #ff1111;
}
a:link { text-decoration: none; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:active { text-decoration: none; }

BIN
library/static/icons/android-chrome-192x192.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

BIN
library/static/icons/android-chrome-512x512.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 58 KiB

BIN
library/static/icons/apple-touch-icon.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

BIN
library/static/icons/favicon-16x16.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 696 B

BIN
library/static/icons/favicon-32x32.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

BIN
library/static/icons/favicon.ico

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

1
library/static/icons/site.webmanifest

@ -0,0 +1 @@
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}

5
library/templates/base.html

@ -7,6 +7,11 @@
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/dropdown.css')}}">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/bookmark.css')}}">
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/upload.css')}}">
<link rel="shortcut icon" href="{{ url_for('static', filename='icons/favicon.ico') }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ url_for('static', filename='icons/apple-touch-icon.png')}}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='icons/favicon-32x32.png')}}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ url_for('static', filename='icons/favicon-16x16.png')}}">
<link rel="manifest" href="{{ url_for('static', filename='icons/site.webmanifest')}}">
</head>
<body>
<div id="cloud"></div>

Loading…
Cancel
Save