Archived
1
0
Fork 0

Merge branch '29-make-a-logo' into 'dev'

Resolve "Make a logo"

Closes #29

See merge request pnx/httpcb!31
This commit is contained in:
Henrik Hautakoski 2022-08-09 19:03:13 +00:00
commit 88318f00ba
11 changed files with 16 additions and 1 deletions

View file

@ -1,11 +1,19 @@
.masthead {
@extend .container;
display: block;
display: flex;
flex-direction: column;
text-align: center;
align-items: center;
padding-top: 2em;
padding-bottom: 4em;
.logo {
background: url(#{$image-path}/logo.png) no-repeat;
height: 220px;
width: 200px;
}
h1, p {
color: $text-light-color;
text-shadow: $header-text-shadow;

View file

@ -5,6 +5,8 @@
<div class="masthead">
<div class="logo"></div>
<h1>Welcome to HTTP Callback</h1>
<p>

View file

@ -4,6 +4,10 @@
{{ assets.outputCss() }}
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="apple-touch-icon" sizes="180x180" href="{{ url('/apple-touch-icon.png') }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ url('/favicon-32x32.png') }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ url('/favicon-16x16.png') }}">
<link rel="manifest" href="{{ url('/site.webmanifest') }}">
<title>HTTP Callback</title>
</head>

Binary file not shown.

After

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 57 KiB

BIN
public/apple-touch-icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

BIN
public/favicon-16x16.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 668 B

BIN
public/favicon-32x32.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

BIN
public/favicon.ico Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

BIN
public/img/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

1
public/site.webmanifest Normal file
View file

@ -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"}