mirror of
https://github.com/psforever/PSFPortal.git
synced 2026-07-16 00:44:40 +00:00
Frontend CSS styling
This commit is contained in:
parent
74c8365682
commit
3a45eb300b
3 changed files with 19 additions and 2 deletions
|
|
@ -2,7 +2,10 @@ html, body {
|
||||||
position: relative;
|
position: relative;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 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 {
|
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);
|
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…
Add table
Add a link
Reference in a new issue