fixing layout

This commit is contained in:
sakrecoer 2020-08-04 10:48:11 +02:00
parent e81f0ace73
commit 8fcda1a3d0
17 changed files with 96 additions and 348 deletions

View file

@ -30,14 +30,17 @@
}
@-webkit-keyframes backgroundSize {
0%{background-size:200% 400%}
100%{background-size:400% 200%}
0%{background-size:100% 150%}
50%{background-size:150% 100%}
100%{background-size:100% 150%}
}
@-moz-keyframes backgroundSize {
0%{background-size:200% 400%}
100%{background-size:400% 200%}
0%{background-size:100% 150%}
50%{background-size:150% 100%}
100%{background-size:100% 150%}
}
@keyframes backgroundSize {
0%{background-size:200% 400%}
100%{background-size:400% 200%}
0%{background-size:100% 150%}
50%{background-size:150% 100%}
100%{background-size:100% 150%}
}

View file

@ -133,15 +133,15 @@ $font: (
// Palette.
$palette: (
bg: rgb(66, 66, 66),
bg-alt: rgba(66, 66, 66, 0.75),
fg: rgb(254, 255, 234),
fg-alt: rgba(254, 255, 234, 0.25),
border: rgba(0, 0, 0, 1),
bg: #1f1729,
bg-alt: rgba(31, 23, 41, 0.75),
fg: #a38ab6,
fg-alt: rgba(163, 138, 182, 0.25),
border: #000000,
border-alt: rgba(0, 0, 0, 0.75),
accent1: rgb(252, 252, 100),
accent1-alt:rgb(182, 182, 0),
accent2: rgb(0, 146, 137),
accent2-alt:rgb(0, 97, 90),
accent1: #38ff59,
accent1-alt:rgba(56, 255, 89, 0.75),
accent2: #6800ca,
accent2-alt:rgba(104, 0, 202, 0.75),
);