Frontend CSS styling

This commit is contained in:
Chord 2020-05-14 19:49:48 +02:00
parent 74c8365682
commit 3a45eb300b
3 changed files with 19 additions and 2 deletions

View file

@ -2,7 +2,10 @@ html, body {
position: relative;
width: 100%;
height: 100%;
background: $bg-color;
background: rgb(2,0,36);
background: linear-gradient(0deg, rgba(2,0,36,1) 0%, #0e142d 35%);
background-color:rgb(2,0,36);
background-repeat: no-repeat;
}
body {

View file

@ -1 +1,5 @@
// TODO
$ps-accent: #25D2B2;
$ps-dark-accent: #213e4e;
$primary: $ps-dark-accent;
$secondary: #213e4e;

View file

@ -20,3 +20,13 @@
transform: translate3d(4px, 0, 0);
}
}
.btn-primary {
@include button-variant(lighten($ps-dark-accent,10%), $ps-accent);
text-shadow: 2px 2px 1px #111;
border-width: 2px;
}
.btn-secondary {
@include button-variant($secondary, $secondary);
}