add favicon, set title, fix title font size on mobile
parent
f040741dfd
commit
5c9746ba90
Binary file not shown.
After Width: | Height: | Size: 15 KiB |
|
@ -18,7 +18,7 @@ $slope-size: 6vw
|
||||||
$extra-padding: 2vw
|
$extra-padding: 2vw
|
||||||
|
|
||||||
body
|
body
|
||||||
font: 1.5em $regular-font-stack
|
font: 1.3em $regular-font-stack
|
||||||
color: $color-dark-brown
|
color: $color-dark-brown
|
||||||
background: $color-mint
|
background: $color-mint
|
||||||
|
|
||||||
|
@ -34,7 +34,7 @@ a:active
|
||||||
color: $color-light-dark-brown
|
color: $color-light-dark-brown
|
||||||
|
|
||||||
#website-title
|
#website-title
|
||||||
font-size: 3.5em
|
font-size: calc(1.6em + 2vw)
|
||||||
margin-top: 30px
|
margin-top: 30px
|
||||||
margin-left: 30px
|
margin-left: 30px
|
||||||
font-family: $website-title-font-stack
|
font-family: $website-title-font-stack
|
||||||
|
@ -42,7 +42,7 @@ a:active
|
||||||
color: $color-white
|
color: $color-white
|
||||||
|
|
||||||
#blog-button
|
#blog-button
|
||||||
font-size: 150%
|
font-size: calc(1.1em + 0.5vw)
|
||||||
font-weight: bold
|
font-weight: bold
|
||||||
color: $color-dark-mint
|
color: $color-dark-mint
|
||||||
margin-top: 30px
|
margin-top: 30px
|
||||||
|
|
|
@ -1,6 +1,10 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ .Site.LanguageCode }}">
|
<html lang="{{ .Site.LanguageCode }}">
|
||||||
<head>
|
<head>
|
||||||
|
<title>Florian Schrofner</title>
|
||||||
|
{{ $favicon := resources.Get "images/favicon.ico"}}
|
||||||
|
<link rel="shortcut icon" href="{{$favicon.Permalink}}">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
{{ partial "css.html" . }}
|
{{ partial "css.html" . }}
|
||||||
{{ partial "script_prepend.html" . }}
|
{{ partial "script_prepend.html" . }}
|
||||||
</head>
|
</head>
|
||||||
|
|
Loading…
Reference in New Issue