final form

This commit is contained in:
Set Sakrecoer 2019-11-05 12:34:08 +01:00
parent 1905835832
commit 74d242807b
5 changed files with 47 additions and 20 deletions

View file

@ -6,7 +6,7 @@ image: /assets/img/world.svg
---
{% include navmenu.html %}
<div id="hero" style="height: 75vh; background:transparent;" >
<div id="hero" style="height: 30vh; background:transparent;" >
<div class="pivot">
@ -82,4 +82,22 @@ image: /assets/img/world.svg
$(this).addClass('is-checked');
});
});
</script>
</script>
<style>
body {
background: linear-gradient(230deg, rgba(218, 159, 142, 0.9), rgba(236, 0, 228, 0.9), rgba(0, 212, 236, 0.9), rgba(0, 236, 173, 0.9), rgba(110, 0, 236, 0.9));
background-position: center;
background-repeat: repeat;
-webkit-animation: AnimationName 60s ease infinite;
-moz-animation: AnimationName 60s ease infinite;
animation: AnimationName 60s ease infinite; }
#wallpaper {
background-image: url('{{ page.image }}');
background-position: center;
background-repeat: repeat;
-webkit-animation: AnimationName 60s ease infinite;
-moz-animation: AnimationName 60s ease infinite;
animation: AnimationName 60s ease infinite;
}
</style>