Jothi Prasath
2 years ago
No known key found for this signature in database
GPG Key ID: 801387319B80C413
3 changed files with
16 additions and
0 deletions
-
assets/css/master.scss
-
layouts/_default/baseof.html
-
layouts/partials/navbar.html
|
|
|
@ -418,6 +418,18 @@ body { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
.navbar { |
|
|
|
background-color: #333; |
|
|
|
padding: 10px 16px; |
|
|
|
} |
|
|
|
|
|
|
|
.navbar a { |
|
|
|
color: white; |
|
|
|
display: block; |
|
|
|
text-align: center; |
|
|
|
text-decoration: none; |
|
|
|
} |
|
|
|
|
|
|
|
// ANIMATIONS |
|
|
|
|
|
|
|
@keyframes fade-in { |
|
|
|
|
|
|
|
@ -2,6 +2,7 @@ |
|
|
|
<html> |
|
|
|
{{- partial "head.html" . -}} |
|
|
|
<body> |
|
|
|
{{- partial "navbar.html" . -}} |
|
|
|
{{- block "main" . }}{{- end }} |
|
|
|
</body> |
|
|
|
</html> |
|
|
|
|
|
|
|
@ -0,0 +1,3 @@ |
|
|
|
<div class="navbar"> |
|
|
|
<a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a> |
|
|
|
</div> |