This commit is contained in:
Set Sakrecoer 2019-07-13 23:44:59 +02:00
parent 58c6ad52b6
commit 34abecbc4e
10 changed files with 60 additions and 23 deletions

View file

@ -160,7 +160,28 @@ a:hover {
flex: 1 1 300px;
padding: 10px;
margin: 0;
background: linear-gradient(230deg, rgba(218, 159, 142, 0.4), rgba(236, 0, 228, 0.4), rgba(0, 212, 236, 0.4), rgba(0, 236, 173, 0.4), rgba(110, 0, 236, 0.4));
background-size: 1000% 1000%;
-webkit-animation: AnimationName 30s ease infinite;
-moz-animation: AnimationName 30s ease infinite;
animation: AnimationName 30s ease infinite;
@-webkit-keyframes AnimationName {
0%{background-position:0% 91%}
50%{background-position:100% 10%}
100%{background-position:0% 91%}
}
@-moz-keyframes AnimationName {
0%{background-position:0% 91%}
50%{background-position:100% 10%}
100%{background-position:0% 91%}
}
@keyframes AnimationName {
0%{background-position:0% 91%}
50%{background-position:100% 10%}
100%{background-position:0% 91%}
}
h1, h2, h3, p {
padding: 5px;
@ -202,7 +223,7 @@ a:hover {
margin: 0;
border-radius: 3px;
box-shadow: 5px 10px 10px rgba(61, 0, 102, 0.13);
}
/* Music Template */
@ -364,4 +385,8 @@ min-height: 80vh;
.logo {
flex: 1 0 300px;
box-shadow: none;
background-image: url('/assets/img/body.png');
background-size: 100%;
background-repeat: repeat;
}