Merge branch '29-make-a-logo' into 'dev'
Resolve "Make a logo" Closes #29 See merge request pnx/httpcb!31
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -5,6 +5,8 @@
|
|||
|
||||
<div class="masthead">
|
||||
|
||||
<div class="logo"></div>
|
||||
|
||||
<h1>Welcome to HTTP Callback</h1>
|
||||
|
||||
<p>
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
BIN
public/android-chrome-192x192.png
Normal file
|
After Width: | Height: | Size: 12 KiB |
BIN
public/android-chrome-512x512.png
Normal file
|
After Width: | Height: | Size: 57 KiB |
BIN
public/apple-touch-icon.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
public/favicon-16x16.png
Normal file
|
After Width: | Height: | Size: 668 B |
BIN
public/favicon-32x32.png
Normal file
|
After Width: | Height: | Size: 1.2 KiB |
BIN
public/favicon.ico
Normal file
|
After Width: | Height: | Size: 15 KiB |
BIN
public/img/logo.png
Normal file
|
After Width: | Height: | Size: 22 KiB |
1
public/site.webmanifest
Normal 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"}
|
||||