mirror of
https://github.com/psforever/PSFPortal.git
synced 2026-01-19 18:14:45 +00:00
Frontend CSS styling
This commit is contained in:
parent
74c8365682
commit
3a45eb300b
|
|
@ -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 {
|
||||
|
|
|
|||
|
|
@ -1 +1,5 @@
|
|||
// TODO
|
||||
$ps-accent: #25D2B2;
|
||||
$ps-dark-accent: #213e4e;
|
||||
|
||||
$primary: $ps-dark-accent;
|
||||
$secondary: #213e4e;
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue